diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-04-07 21:40:07 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-04-07 21:40:07 +0000 |
commit | 61660eadced09491ef8ee0a7d4af73cc75fdc349 (patch) | |
tree | be677bd7256c7501f70062c7d3306a975badd408 /runtime/doc/syntax.txt | |
parent | 5555acc08e6f49afe00cbb8fefd687cb526a7cf2 (diff) | |
download | vim-git-61660eadced09491ef8ee0a7d4af73cc75fdc349.tar.gz |
updated for version 7.0c12v7.0c12
Diffstat (limited to 'runtime/doc/syntax.txt')
-rw-r--r-- | runtime/doc/syntax.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/syntax.txt b/runtime/doc/syntax.txt index a0a5b8d5d..13a53973f 100644 --- a/runtime/doc/syntax.txt +++ b/runtime/doc/syntax.txt @@ -1,4 +1,4 @@ -*syntax.txt* For Vim version 7.0c. Last change: 2006 Apr 04 +*syntax.txt* For Vim version 7.0c. Last change: 2006 Apr 06 VIM REFERENCE MANUAL by Bram Moolenaar @@ -2581,7 +2581,7 @@ somewhere else with "P". Do you want to draw with the mouse? Try the following: > :function! GetPixel() - : let c = getline(line("."))[col(".") - 1] + : let c = getline(".")[col(".") - 1] : echo c : exe "noremap <LeftMouse> <LeftMouse>r".c : exe "noremap <LeftDrag> <LeftMouse>r".c |