Anton Shestakov <engored@ya.ru>, Sun, 14 Sep 2014 15:34:02 +0900
Make the window full screen to avoid unrendered areas.
source.rst
Permissions: -rw-r--r--
beginning of
*previous*,
*next* paragraph
beginning of
*previous*,
*next* sentence
*beginning*,
*middle* of line
*first*,
*last* character of line
line n, default the
*first*,
*last* match of next brace, bracket, comment, #define
line n from
*start*,
*bottom* of window
insert
*before*,
*after* cursor
insert at
*beginning*,
*end* of line
insert text in first column
open a new line
*below*,
*above* the current line
change to the end of line
*lowercase*,
*uppercase* text of movement m
yank current line into register
put register
*after*,
*before* cursor position
like
`p`,
`P` with indent adjusted
like
`p`,
`P` leaving cursor after new text
the group matches the empty string; the letters set the corresponding flags
a non-capturing version of regular parentheses
the substring matched by the group is accessible via the symbolic group
matches whatever text was matched by the earlier named group named
the contents of the parentheses are simply ignored
matches next, but doesn't consume any of the string (lookahead assertion)
negative lookahead assertion
matches a preceding string (lookbehind assertion)
negative lookbehind assertion, patterns which start with it may match at
the beginning of the string being searched
``(?(id/name)yes-pattern|no-pattern)`` magic.
``(<)?(\w+@\w+(?:\.\w+)+)(?(1)>)``