aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/lexers/git.tes
AgeCommit message (Collapse)AuthorFilesLines
2024-11-24added special Q-Register ":" for accessing dotRobin Haberkorn1-4/+2
* We cannot call it "." since that introduces a local register and we don't want to add an unnecessary syntactic exception. * Allows the idiom [: ... ]: to temporarily move around. Also, you can now write ^E\: without having to store dot in a register first. * In the future we might add an ^E register as well for byte offsets. However, there are much fewer useful applications. * Of course, you can now also write nU: instead of nJ, Q: instead of "." and n%: instead of "nC.". However it's all not really useful.
2024-09-26Git lexer: added support for TAG_EDITMSG and MERGE_MSGRobin Haberkorn1-0/+2
* Curses: "icons" have also been added
2024-09-09added an improvised lexer for styling Git commit messagesRobin Haberkorn1-0/+16
It's not a real Lexilla lexer, but simply styles the document once in lexer.set.git in order to highlight comment lines.