aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2011-08-09 19:15:51 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2011-08-09 19:15:51 -0400
commit66a4df073265b90e7bb68c97c23cddd714ba40a3 (patch)
treee2d36015dbadc66f3869d797a9da746ecb575cfc /modules
parent2c219e31fd892ac552ba4fd2667212c846011988 (diff)
downloadtextadept-66a4df073265b90e7bb68c97c23cddd714ba40a3.tar.gz
textadept-66a4df073265b90e7bb68c97c23cddd714ba40a3.zip
Changed Next View/Previous View key bindings; modules/textadept/keys.lua
Windows 7 eats Control+Alt+Tab and Ctrl+Alt+Shift+Tab.
Diffstat (limited to 'modules')
-rw-r--r--modules/textadept/keys.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/textadept/keys.lua b/modules/textadept/keys.lua
index f9d9104c..9a715fa7 100644
--- a/modules/textadept/keys.lua
+++ b/modules/textadept/keys.lua
@@ -103,7 +103,7 @@ if not RESETTING then constantize_menu_buffer_functions() end
Unassigned keys (~ denotes keys reserved by the operating system):
c: A B C H N p qQ T ~ V X Y ) ] } * \n
a: aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpP QrRsStTuUvVwWxXyYzZ_ ) ] } *+-/=~~\n\s
- ca: aAbBcCdDeE F h jJkK LmMnN pPqQ t v xXy zZ_"'()[]{}<>* /
+ ca: aAbBcCdDeE F h jJkK LmM N PqQ t v xXy zZ_"'()[]{}<>* / ~~
CTRL = 'c' (Control ^)
ALT = 'a' (Alt)
@@ -258,8 +258,8 @@ keys[not OSX and 'cal' or 'mal'] = m_textadept.mime_types.select_lexer
keys.f5 = { _buffer.colourise, _buffer, 0, -1 }
-- View.
-keys[not OSX and 'ca\t' or 'c\t'] = { gui.goto_view, 1, false }
-keys[not OSX and 'cas\t' or 'cs\t'] = { gui.goto_view, -1, false }
+keys[not OSX and 'can' or 'c\t'] = { gui.goto_view, 1, false }
+keys[not OSX and 'cap' or 'cs\t'] = { gui.goto_view, -1, false }
keys[not OSX and 'caS' or 'cS'] = { _view.split, _view }
keys[not OSX and 'cas' or 'cs'] = { _view.split, _view, false }
keys[not OSX and 'caw' or 'cw'] = { _view.unsplit, _view }