diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-11-19 18:54:17 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-11-19 18:54:17 +0100 |
commit | 2f3b510b0f9203d31e2f7f536ebfbcb17766e09e (patch) | |
tree | 349987943481953e79a7db75d3c144eb8617df86 /runtime/optwin.vim | |
parent | b1e265045cc872f2e1cf43e6a98bc3e3770a289d (diff) | |
download | vim-git-2f3b510b0f9203d31e2f7f536ebfbcb17766e09e.tar.gz |
Update runtime files.
Diffstat (limited to 'runtime/optwin.vim')
-rw-r--r-- | runtime/optwin.vim | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim index 35f99c537..55353ce66 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: 2014 Oct 09 +" Last Change: 2014 Nov 19 " If there already is an option window, jump to that one. if bufwinnr("option-window") > 0 @@ -149,7 +149,7 @@ setlocal ts=15 tw=0 noro buftype=nofile call append(0, '" Each "set" line shows the current value of an option (on the left).') call append(1, '" Hit <CR> on a "set" line to execute it.') call append(2, '" A boolean option will be toggled.') -call append(3, '" For other options you can edit the value.') +call append(3, '" For other options you can edit the value before hitting <CR>.') call append(4, '" Hit <CR> on a help line to open a help window on this option.') call append(5, '" Hit <CR> on an index line to jump there.') call append(6, '" Hit <Space> on a "set" line to refresh it.') @@ -1194,8 +1194,10 @@ if has("keymap") call <SID>OptionL("kmp") endif if has("langmap") - call append("$", "langmap\ttranslate characters for Normal mode") + call append("$", "langmap\tlist of characters that are translated in Normal mode") call <SID>OptionG("lmap", &lmap) + call append("$", "langnoremap\tdon't apply 'langmap' to mapped characters") + call <SID>BinOptionG("lnr", &lnr) endif if has("xim") call append("$", "imdisable\twhen set never use IM; overrules following IM options") |