diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-07-25 15:06:34 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-07-25 15:06:34 +0200 |
commit | 641e28615398a960b810ec53a50398a63a3d2f68 (patch) | |
tree | 51198f8718c97245aad3e1a666e97c966df07341 /runtime/doc/visual.txt | |
parent | 058bdcfd5d7f2fd0945e3cb9c84cab514cd95fb9 (diff) | |
download | vim-641e28615398a960b810ec53a50398a63a3d2f68.zip |
updated for version 7.3.610
Problem: Cannot operate on the text that a search pattern matches.
Solution: Add the "gn" and "gN" commands. (Christian Brabandt)
Diffstat (limited to 'runtime/doc/visual.txt')
-rw-r--r-- | runtime/doc/visual.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/runtime/doc/visual.txt b/runtime/doc/visual.txt index 4457aeb01..74727ec13 100644 --- a/runtime/doc/visual.txt +++ b/runtime/doc/visual.txt @@ -99,6 +99,18 @@ gv Start Visual mode with the same area as the previous After using "p" or "P" in Visual mode the text that was put will be selected. + *gn* *v_gn* +gn Search forward for the last used search pattern, like + with `n`, and start Visual mode to select the match. + If the cursor is on the match, visually selects it. + If an operator is pending, operates on the match. + E.g., "dgn" deletes the text of the next match. + If Visual mode is active, extends the selection + until the end of the next match. + + *gN* *v_gN* +gN Like |gn| but searches backward, like with `N`. + *<LeftMouse>* <LeftMouse> Set the current cursor position. If Visual mode is active it is stopped. Only when 'mouse' option is |