diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-02-12 14:29:27 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-02-12 14:29:27 +0000 |
commit | 4399ef4764584a24080670b4869cb8b5d31a4f78 (patch) | |
tree | c47e4671d16eeeadc9aa0b9a9cb19576e7c653b9 /runtime/doc/usr_05.txt | |
parent | b11bd7e43f6cdca944dceebaa3c8012d6bf1a74e (diff) | |
download | vim-git-4399ef4764584a24080670b4869cb8b5d31a4f78.tar.gz |
updated for version 7.0050
Diffstat (limited to 'runtime/doc/usr_05.txt')
-rw-r--r-- | runtime/doc/usr_05.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/doc/usr_05.txt b/runtime/doc/usr_05.txt index 2aa2b92b8..465986302 100644 --- a/runtime/doc/usr_05.txt +++ b/runtime/doc/usr_05.txt @@ -1,4 +1,4 @@ -*usr_05.txt* For Vim version 7.0aa. Last change: 2004 Dec 29 +*usr_05.txt* For Vim version 7.0aa. Last change: 2005 Feb 08 VIM USER MANUAL - by Bram Moolenaar @@ -7,7 +7,7 @@ Vim can be tuned to work like you want it to. This chapter shows you how to make Vim start with options set to different values. Add plugins to extend -Vims capabilities. Or define your own macros. +Vim's capabilities. Or define your own macros. |05.1| The vimrc file |05.2| The example vimrc file explained @@ -251,8 +251,8 @@ you use an existing Vim command, that command will no longer be available. You better avoid that. One key that can be used with mappings is the backslash. Since you probably want to define more than one mapping, add another character. You -could map "\p" to add parens around a word, and "\c" to add curly braces, for -example: > +could map "\p" to add parentheses around a word, and "\c" to add curly braces, +for example: > :map \p i(<Esc>ea)<Esc> :map \c i{<Esc>ea}<Esc> |