1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-11-24 07:53:41 +03:00

Add complete extra_word_chars for lisp

See https://www.cs.cmu.edu/Groups/AI/html/cltl/clm/node27.html.
This commit is contained in:
David Ross 2019-07-06 12:25:46 -07:00
parent e65740873d
commit 27ed20582f

View File

@ -16,7 +16,7 @@ hook global WinSetOption filetype=lisp %{
hook window ModeChange insert:.* -group lisp-trim-indent lisp-trim-indent
hook window InsertChar \n -group lisp-indent lisp-indent-on-new-line
set-option buffer extra_word_chars '_' '-'
set-option buffer extra_word_chars '_' '+' '-' '*' '/' '@' '$' '%' '^' '&' '_' '=' '<' '>' '~' '.'
hook -once -always window WinSetOption filetype=.* %{ remove-hooks window lisp-.+ }
}