diff options
author | 2011-02-25 18:56:32 -0500 | |
---|---|---|
committer | 2011-02-25 18:56:32 -0500 | |
commit | 63c682d80646bee86e20a9e26f628e72145c3c82 (patch) | |
tree | 257b6057f5a46a42c4a7bc498f4d704d58eb854c /modules | |
parent | 6b9d51dea8066e8614517d7dffe2c1755a585b4a (diff) | |
download | textadept-63c682d80646bee86e20a9e26f628e72145c3c82.tar.gz textadept-63c682d80646bee86e20a9e26f628e72145c3c82.zip |
Changed Ctrl+H key command (highlight word) to Ctrl+Shift+H.
Ctrl+H will now show symbol apidoc when available.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/textadept/keys.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/textadept/keys.lua b/modules/textadept/keys.lua index 257b6842..bdda2d7f 100644 --- a/modules/textadept/keys.lua +++ b/modules/textadept/keys.lua @@ -60,9 +60,9 @@ if not OSX then -- Windows and Linux key commands. --[[ - C: D I J K M U + C: D J K M U A: A B C D E F G H J K L M N P S T U V W X Y Z - CS: A B C D G H I J K L M N O Q T U V X Y Z + CS: A B C D G I J K L M N O Q T U V X Y Z SA: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z CA: A B C D E F G H J K L M N O Q R S T U V W X Y Z CSA: A B C D E F G H J K L M N O P Q R S T U V W X Y Z @@ -100,7 +100,7 @@ if not OSX then keys['c\n\r'] = { m_editing.autocomplete_word, '%w_' } -- win32 keys.cq = { m_editing.block_comment } -- TODO: { m_editing.current_word, 'delete' } - keys.ch = { m_editing.highlight_word } + keys.csh = { m_editing.highlight_word } -- TODO: { m_editing.transpose_chars } -- TODO: { m_editing.convert_indentation } keys.ac = { -- enClose in... @@ -338,7 +338,7 @@ else keys.cA = { 'home_extend', b } keys.ce = { 'line_end', b } keys.cE = { 'line_end_extend', b } - keys.ch = { 'delete_back', b } + --keys.ch = { 'delete_back', b } keys.cah = { 'del_word_left', b } keys.cd = { 'clear', b } keys.cad = { 'del_word_right', b } |