summaryrefslogtreecommitdiffstats
path: root/src/doc
diff options
context:
space:
mode:
authorAndrés <andmarti@gmail.com>2021-03-16 11:56:17 -0300
committerAndrés <andmarti@gmail.com>2021-03-16 11:56:17 -0300
commitb4055630475b574fb45409771c3e84d2dd211dca (patch)
treef45548b7eb6b0ccaa5fac33e59ff3c4129a8904d /src/doc
parent82434d7b289d1e4aee48f25f35ef5c874ae0e2c7 (diff)
EDIT_MODE: Added 'F' 'dF' 'cF' commands
Diffstat (limited to 'src/doc')
-rwxr-xr-xsrc/doc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/doc b/src/doc
index 0866e5b..771bcf1 100755
--- a/src/doc
+++ b/src/doc
@@ -266,6 +266,7 @@ Commands for handling cell content:
0 Move to the beginning of the line.
$ Move to the end of the line.
f{char} Move to the next occurrence of {char} to the right.
+ F{char} Move to the previous occurrence of {char} to the left.
r{char} Replaces the character under the cursor with {char}.
R{word} Each character you type replaces an existing character,
starting with the character under the cursor.
@@ -289,6 +290,7 @@ Commands for handling cell content:
dh Delete the character before the cursor.
d<LEFT> Delete the character before the cursor.
df{char} Delete until the first occurence of {char} to the right.
+ dF{char} Delete until the previous occurence of {char} to the left.
ce Same as "de", then enter Insert mode.
@@ -304,6 +306,7 @@ Commands for handling cell content:
ch Same as "dh", then enter Insert mode.
c<LEFT> Same as "d<LEFT>", then enter Insert mode.
cf{char} Same as "df{char}", then enter Insert mode.
+ cF{char} Same as "dF{char}", then enter Insert mode.
x Delete the character under the cursor.
X Delete the character before the cursor.