summaryrefslogtreecommitdiff
path: root/ted.cfg
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2021-01-31 15:33:21 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2021-01-31 15:33:21 -0500
commitd7e2d3d4f13c5f6e52ad36aa890eb09a650d1238 (patch)
tree9e4d883716a34fcbaef46fe943bb35242a33b675 /ted.cfg
parent5a7ca9106a305555922ef78c2dd84ab8779c7718 (diff)
fixed Ctrl+Left/Right being double-set, cleaned up core options code, auto-add-newline
Diffstat (limited to 'ted.cfg')
-rw-r--r--ted.cfg15
1 files changed, 13 insertions, 2 deletions
diff --git a/ted.cfg b/ted.cfg
index 8b576f4..a639917 100644
--- a/ted.cfg
+++ b/ted.cfg
@@ -17,6 +17,8 @@ max-menu-width = 600
padding = 6
error-display-time = 10
auto-indent = on
+# automatically add a newline at the end of the file on save
+auto-add-newline = on
[keyboard]
# motion and selection
@@ -75,11 +77,20 @@ Ctrl+c = :copy
Ctrl+x = :cut
Ctrl+v = :paste
+# tabs
Ctrl+w = :tab-close
Ctrl+PageUp = :tab-prev
-Ctrl+Left = :tab-prev
Ctrl+PageDown = :tab-next
-Ctrl+Right = :tab-next
+Alt+1 = 0 :tab-switch
+Alt+2 = 1 :tab-switch
+Alt+3 = 2 :tab-switch
+Alt+4 = 3 :tab-switch
+Alt+5 = 4 :tab-switch
+Alt+6 = 5 :tab-switch
+Alt+7 = 6 :tab-switch
+Alt+8 = 7 :tab-switch
+Alt+9 = 8 :tab-switch
+Alt+0 = 9 :tab-switch
Ctrl++ = 3 :increase-text-size
Ctrl+- = 3 :decrease-text-size