diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2021-01-31 15:33:21 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2021-01-31 15:33:21 -0500 |
commit | d7e2d3d4f13c5f6e52ad36aa890eb09a650d1238 (patch) | |
tree | 9e4d883716a34fcbaef46fe943bb35242a33b675 /ted.cfg | |
parent | 5a7ca9106a305555922ef78c2dd84ab8779c7718 (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.cfg | 15 |
1 files changed, 13 insertions, 2 deletions
@@ -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 |