diff options
Diffstat (limited to 'runtime/optwin.vim')
-rw-r--r-- | runtime/optwin.vim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim index 382322cfe2..4db5e20921 100644 --- a/runtime/optwin.vim +++ b/runtime/optwin.vim @@ -1,7 +1,7 @@ " These commands create the option window. " " Maintainer: Bram Moolenaar <Bram@vim.org> -" Last Change: 2022 Oct 02 +" Last Change: 2022 Oct 15 " If there already is an option window, jump to that one. let buf = bufnr('option-window') @@ -874,6 +874,8 @@ if has("lispindent") call <SID>BinOptionL("lisp") call append("$", "lispwords\twords that change how lisp indenting works") call <SID>OptionL("lw") + call <SID>AddOption("lispoptions", "options for Lisp indenting") + call <SID>OptionL("lop") endif |