summaryrefslogtreecommitdiffstats
path: root/src/doc
diff options
context:
space:
mode:
authorAndrés <andmarti@gmail.com>2021-03-16 11:33:39 -0300
committerAndrés <andmarti@gmail.com>2021-03-16 11:33:39 -0300
commit82434d7b289d1e4aee48f25f35ef5c874ae0e2c7 (patch)
tree38fc3459981a2aac7a70dae85b910fb90751786e /src/doc
parentc90fbf80ee6c834fd51f1c8423ac3a40d9fbb315 (diff)
Added cf and df commands of EDIT_MODE to doc
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 42c09b7..0866e5b 100755
--- a/src/doc
+++ b/src/doc
@@ -288,6 +288,8 @@ Commands for handling cell content:
d<RIGHT> Delete the character under the cursor.
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.
+
ce Same as "de", then enter Insert mode.
cw Same as "dw", then enter Insert mode.
@@ -301,6 +303,7 @@ Commands for handling cell content:
c<RIGHT> Same as "d<RIGHT>", then enter Insert mode.
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.
x Delete the character under the cursor.
X Delete the character before the cursor.