<count> chars to the left.
<count> lines downward.
<count> chars to the right.
<count> lines upward.
To the end of line <count> from the cursor.
To the first CHAR <count> − 1 lines lower.
To the first CHAR <count> lines higher.
To the first CHAR <count> lines lower.
To the first char of the line.
To column <count>
<count> <char>s to the right (find).
Till before <count> <char>s to the right.
<count> <char>s to the left.
Till after <count> <char>s to the left.
Repeat latest f t F T <count> times.
Repeat latest f t F T <count> times in opposite direction.
<count> words forward.
<count> WORDS forward.
<count> words backward.
<count> WORDS backward.
To the end of word <count> forward.
To the end of WORD <count> forward.
Go to line <count> (default end-of-file).
To line <count> from top of the screen (home).
To line <count> from bottom of the screen (last).
To the middle line of the screen.
<count> sentences forward.
<count> sentences backward.
<count> paragraphs forward.
<count> paragraphs backward.
To the <count>th heading.
To the <count>th previous heading.
To the end of <count>th heading.
Mark the cursor position with a letter.
To the mark.
To the first CHAR of the line with the mark.
Show contents of textmarker.
Show contents of register.
To the cursor position before the latest absolute jump (of which are examples / and G).
To the first CHAR of the line on which the cursor was placed before the latest absolute jump.
To the <count>th occurrence of <string>.
To the <count>th occurrence of <string> from previous / or ?.
To the <count>th previous occurrence of <string>.
To the <count>th previous occurrence of <string> from previous ? or /.
Repeat latest / ? (next).
Repeat latest search in opposite direction.
Without a prefix argument, this command toggles case-sensitive/case-insensitive search modes and plain vanilla/regular expression search. With the prefix argument 1, i.e., 1 C-c /, this toggles case-sensitivity; with the prefix argument 2, toggles plain vanilla search and search using regular expressions. See Viper Specials, for alternative ways to invoke this function.
Find the next bracket/parenthesis/brace and go to its match.
By default, Viper ignores brackets/parentheses/braces that occur inside
parentheses. You can change this by setting
viper-parse-sexp-ignore-comments
to nil
in your Viper
customization file.
This option can also be toggled interactively if you quickly hit %%%.
This latter feature is implemented as a vi-style keyboard macro. If you don’t want this macro, put
(viper-set-parsing-style-toggling-macro 'undefine)
in your Viper customization file.