summaryrefslogtreecommitdiff
path: root/rc/base/clojure.kak
AgeCommit message (Collapse)Author
2019-03-21Add categories in rc/Alex Leferry 2
Closes #2783
2019-02-04Use indentwidth for lisp, scheme, and ClojureJason Felice
2019-01-20Small optimization in clojure.kak awk scriptMaxime Coste
2019-01-19Use a here-document for clojure.kak awk scriptMaxime Coste
2019-01-19Fix some escaping issues in clojure.kakMaxime Coste
2019-01-18Rewrite clojure highlighting to use awkJason Felice
First, avoids the shell escaping issue mentioned in #2604. Second, speeds up Kakoune boot time.
2018-12-27Some collected fixes for Clojure highlightingJason Felice
- condp is a keyword - Highlight '10' correctly - Highlight shebang line as a comment
2018-12-19Unify auto-indent trimming hooksOlivier Perret
* ModeChange hooks that remove indent now belong to *-trim-indent groups, instead of just -indent * *-filter-around-selections hooks and commands have been renamed to trim-indent for clarity
2018-12-11Execute cleanup hooks on any filetype changeOlivier Perret
2018-12-11Change cleanup of base/ languages to use a simpler hook -onceOlivier Perret
2018-11-28Fix extra_word_chars in various scriptsMaxime Coste
Add '_' to the list now that it is not built-in anymore
2018-10-29Make lisp/clojure indent work for appendJason Felice
2018-10-22EDN files are Clojure syntaxJason Felice
2018-09-29Better Lisp and Clojure indentJason Felice
Algol-like indenting doesn't work for Lisp as we tend to open (and close) many forms on one line. This generally puts the cursor where it should be, though it is probably confused by strings with brackets and things.
2018-09-22Fix clojure numbersJason Felice
- Fix issue where numbers which were part of symbols were highlighted. - Fix issue where hexidecimals weren't highlighted past the 'x'
2018-09-19Use remove-hooks regex in rcDelapouite
2018-09-04Improve Clojure highlightingJason Felice
2018-07-05Fix various scripts highlighter commandsMaxime Coste
2018-01-21Convert bundled scripts to ModeChange hookMaxime Coste
2017-11-03rc: Don't use command aliases to highlight keywords properlyFrank LENORMAND
2017-10-28Move highlighters into ScopesMaxime Coste
That means we can now have highlighters active at global, buffer, and window scope. The add-highlighter and remove-highlighter syntax changed to take the parent path (scope/group/...) as a mandatory argument, superseeding the previous -group switch.
2017-01-13Fix naming conventions in bundled scriptsMaxime Coste
Do not use _ prefix for hidden commands, use - as a word separator in command names.
2017-01-04update command namesAlex Leferry 2
2016-12-06transform mimetype to a fallback optionMartin Chaine
The option is now used as a fallback when detection by extension fails. Some scripts like `base/mail.kak` and `base/html.kak` still rely heavily on it.
2016-10-02Fix clojure hookMaxime Coste
2016-09-28Add highlight group to highlighters rmhl hooksgreduan
2016-09-28Add highlight group to highlighters addhl hooksgreduan
2016-04-21Remove uses of \< and \>, always use std regex compatible \bMaxime Coste
2016-01-29Reorganise rc/ into subdirectoriesMaxime Coste
* core: set of tools to work on kakoune source code * base: very common languages and tools * extra: less common languages and tools