7384288e07
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.
43 lines
1.1 KiB
Plaintext
43 lines
1.1 KiB
Plaintext
# http://clojure.org
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
# require lisp.kak
|
|
|
|
# Detection
|
|
# ‾‾‾‾‾‾‾‾‾
|
|
|
|
hook global BufCreate .*[.](cljs?) %{
|
|
set buffer filetype clojure
|
|
}
|
|
|
|
# Highlighters
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
addhl -group / group clojure
|
|
|
|
addhl -group /clojure ref lisp
|
|
|
|
addhl -group /clojure regex \b(clojure.core/['/\w]+)\b 0:keyword
|
|
|
|
# Commands
|
|
# ‾‾‾‾‾‾‾‾
|
|
|
|
def -hidden _clojure_filter_around_selections _lisp_filter_around_selections
|
|
def -hidden _clojure_indent_on_new_line _lisp_indent_on_new_line
|
|
|
|
# Initialization
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
hook -group clojure-highlight global WinSetOption filetype=clojure %{ addhl ref clojure }
|
|
|
|
hook global WinSetOption filetype=clojure %[
|
|
hook window InsertEnd .* -group clojure-hooks _clojure_filter_around_selections
|
|
hook window InsertChar \n -group clojure-indent _clojure_indent_on_new_line
|
|
]
|
|
|
|
hook -group clojure-highlight global WinSetOption filetype=(?!clojure).* %{ rmhl clojure }
|
|
|
|
hook global WinSetOption filetype=(?!clojure).* %{
|
|
rmhooks window clojure-indent
|
|
rmhooks window clojure-hooks
|
|
}
|