diff options
author | Bram Moolenaar <Bram@vim.org> | 2008-01-04 14:17:47 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2008-01-04 14:17:47 +0000 |
commit | 066b62206fdcdef8a878c17f2921a4cf558a0b75 (patch) | |
tree | 9465a732900a62516688a378963fd0a3aedd3e7f /runtime/doc/cmdline.txt | |
parent | 12ddc3e02c95805c32036e5faa30f0870de7c9c7 (diff) | |
download | vim-066b62206fdcdef8a878c17f2921a4cf558a0b75.zip |
updated for version 7.1-199
Diffstat (limited to 'runtime/doc/cmdline.txt')
-rw-r--r-- | runtime/doc/cmdline.txt | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/runtime/doc/cmdline.txt b/runtime/doc/cmdline.txt index 69a711d1f..fd18e6720 100644 --- a/runtime/doc/cmdline.txt +++ b/runtime/doc/cmdline.txt @@ -1,4 +1,4 @@ -*cmdline.txt* For Vim version 7.1. Last change: 2006 Jul 18 +*cmdline.txt* For Vim version 7.1. Last change: 2008 Jan 04 VIM REFERENCE MANUAL by Bram Moolenaar @@ -316,7 +316,7 @@ The same could be done by typing <S-Up> a number of times until the desired command-line is shown. (Note: the shifted arrow keys do not work on all terminals) - *his* *:history* + *:his* *:history* :his[tory] Print the history of last entered commands. {not in Vi} {not available when compiled without the |+cmdline_hist| @@ -447,6 +447,11 @@ extensions matching the 'suffixes' option. To completely ignore files with some extension use 'wildignore'. +To match only files that end at the end of the typed text append a "$". For +example, to match only files that end in ".c": > + :e *.c$ +This will not match a file ending in ".cpp". Without the "$" it does match. + The old value of an option can be obtained by hitting 'wildchar' just after the '='. For example, typing 'wildchar' after ":set dir=" will insert the current value of 'dir'. This overrules file name completion for the options |