diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-07-29 22:33:18 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-07-29 22:33:18 +0200 |
commit | 40af4e3903d0701318b1b176e5fa9cdb03bb0f98 (patch) | |
tree | 339b1b610ec2160a9340bf22510c6e7a879c7f88 /runtime/doc | |
parent | 1587a1e37db85425ae77054ab681a0bbb0d1affb (diff) | |
download | vim-40af4e3903d0701318b1b176e5fa9cdb03bb0f98.zip |
Updated runtime files. Add logcheck filetype plugin. (James Vega)
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/change.txt | 5 | ||||
-rw-r--r-- | runtime/doc/helphelp.txt | 13 | ||||
-rw-r--r-- | runtime/doc/todo.txt | 2 |
3 files changed, 16 insertions, 4 deletions
diff --git a/runtime/doc/change.txt b/runtime/doc/change.txt index 3a1c74faf..8a5d36181 100644 --- a/runtime/doc/change.txt +++ b/runtime/doc/change.txt @@ -1,4 +1,4 @@ -*change.txt* For Vim version 7.3c. Last change: 2010 Mar 23 +*change.txt* For Vim version 7.3c. Last change: 2010 Jul 29 VIM REFERENCE MANUAL by Bram Moolenaar @@ -1245,7 +1245,8 @@ gq{motion} Format the lines that {motion} moves over. :nnoremap Q gq gqgq *gqgq* *gqq* -gqq Format the current line. {not in Vi} +gqq Format the current line. With a count format that + many lines. {not in Vi} *v_gq* {Visual}gq Format the highlighted text. (for {Visual} see diff --git a/runtime/doc/helphelp.txt b/runtime/doc/helphelp.txt index c02b45a93..aa66b03f8 100644 --- a/runtime/doc/helphelp.txt +++ b/runtime/doc/helphelp.txt @@ -1,4 +1,4 @@ -*helphelp.txt* For Vim version 7.3c. Last change: 2008 Jul 21 +*helphelp.txt* For Vim version 7.3c. Last change: 2010 Jul 29 VIM REFERENCE MANUAL by Bram Moolenaar @@ -60,11 +60,20 @@ Help on help files *helphelp* If there are several matches, you can have them listed by hitting CTRL-D. Example: > :help cont<Ctrl-D> -< To use a regexp |pattern|, first do ":help" and then + +< Instead of typing ":help CTRL-V" to search for help + for CTRL-V you can type: > + :help ^V +< This also works together with other characters, for + example to find help for CTRL-V in Insert mode: > + :help i^V +< + To use a regexp |pattern|, first do ":help" and then use ":tag {pattern}" in the help window. The ":tnext" command can then be used to jump to other matches, "tselect" to list matches and choose one. > :help index| :tse z. + < When there is no argument you will see matches for "help", to avoid listing all possible matches (that would be very slow). diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt index 55a8b4c5c..bacf520c4 100644 --- a/runtime/doc/todo.txt +++ b/runtime/doc/todo.txt @@ -44,6 +44,8 @@ ftplugin/mupad.vim should not source AppendMatchGroup.vim, it should use an autoload function. Same for indent/GenericIndent.vim +Uninspected issues on http://scan.coverity.com/rung2.html + Before release 7.3: - Rename vim73 branch to default (hints: Xavier de Gaye, 2010 May 23) |