diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-07-11 20:46:53 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-07-11 20:46:53 +0200 |
commit | a9dc375744c80d882d380c40bf05a8db6a17993e (patch) | |
tree | 82c973a7fb8792d775e9f972cdfe698cbf17edec /runtime/doc/cmdline.txt | |
parent | a3f41662865d5a0582c4ccd22a38317907b59154 (diff) | |
download | vim-git-a9dc375744c80d882d380c40bf05a8db6a17993e.tar.gz |
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Toft)
Diffstat (limited to 'runtime/doc/cmdline.txt')
-rw-r--r-- | runtime/doc/cmdline.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/runtime/doc/cmdline.txt b/runtime/doc/cmdline.txt index 8abb16b8c..08fb10fcc 100644 --- a/runtime/doc/cmdline.txt +++ b/runtime/doc/cmdline.txt @@ -416,7 +416,10 @@ CTRL-L A match is done on the pattern in front of the cursor. If than the pattern, no completion is done. When 'incsearch' is set, entering a search pattern for "/" or "?" and the current match is displayed then CTRL-L will add - one character from the end of the current match. + one character from the end of the current match. If + 'ignorecase' and 'smartcase' are set and the command line has + no uppercase characters, the added character is converted to + lowercase. The 'wildchar' option defaults to <Tab> (CTRL-E when in Vi compatible mode; in a previous version <Esc> was used). In the pattern standard wildcards '*' and |