Updated example. - sam - An updated version of the sam text editor. | |
git clone git://vernunftzentrum.de/sam.git | |
Log | |
Files | |
Refs | |
LICENSE | |
--- | |
commit 589d0aab8d913ee0418cb6606e44da779cb29b05 | |
parent 06107f8d25b2817904804040f729e2f059eca966 | |
Author: Rob King <[email protected]> | |
Date: Fri, 9 Sep 2016 17:12:32 -0500 | |
Updated example. | |
Diffstat: | |
doc/samrc | 17 +++++++++-------- | |
1 file changed, 9 insertions(+), 8 deletions(-) | |
--- | |
diff --git a/doc/samrc b/doc/samrc | |
@@ -14,10 +14,11 @@ bind C k command lineup | |
bind C space command escape | |
# Escape jumps between command file and current file | |
-bind n Escape command jump | |
+bind * Escape command jump | |
-# Control-U deletes to beginning of lien | |
+# Control-U and Control-Shift-BackSpace deletes to beginning of line | |
bind C u command delbol | |
+bind CS BackSpace command delbol | |
# Control-W/BackSpace deletes previous word | |
bind C w command delword | |
@@ -30,12 +31,12 @@ bind C v command paste | |
bind C q command exchange | |
# Arrow keys and Page Up/Down work as expected | |
-bind n Up command lineup | |
-bind n Down command linedown | |
-bind n Left command charleft | |
-bind n Right command charright | |
-bind n Prior command scrollup | |
-bind n Next command scrolldown | |
+bind * Up command lineup | |
+bind * Down command linedown | |
+bind * Left command charleft | |
+bind * Right command charright | |
+bind * Prior command scrollup | |
+bind * Next command scrolldown | |
# I like 13pt Inconsolata | |
font Inconsolata:size=13 |