From 27ed20582f9cdd5fa5eef879629eab4646a7488c Mon Sep 17 00:00:00 2001 From: David Ross Date: Sat, 6 Jul 2019 12:25:46 -0700 Subject: [PATCH] Add complete extra_word_chars for lisp See https://www.cs.cmu.edu/Groups/AI/html/cltl/clm/node27.html. --- rc/filetype/lisp.kak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rc/filetype/lisp.kak b/rc/filetype/lisp.kak index 0e1c8ffd..a3e2d5fb 100644 --- a/rc/filetype/lisp.kak +++ b/rc/filetype/lisp.kak @@ -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-.+ } }