diff options
author | 2010-10-15 17:19:49 -0400 | |
---|---|---|
committer | 2010-10-15 17:19:49 -0400 | |
commit | c2e121cb38d84cbe6a1aa37b9f8ef9c7d81d5b66 (patch) | |
tree | bb8beb1bb15425ccc93640ee269ac6c6093d1133 /modules/textadept/keys.lua | |
parent | 903e94af9204eddeec3f50cd6d5b5c62e1d651ad (diff) | |
download | textadept-c2e121cb38d84cbe6a1aa37b9f8ef9c7d81d5b66.tar.gz textadept-c2e121cb38d84cbe6a1aa37b9f8ef9c7d81d5b66.zip |
Added key commands and changed LuaDoc for highlighting words.
Diffstat (limited to 'modules/textadept/keys.lua')
-rw-r--r-- | modules/textadept/keys.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/textadept/keys.lua b/modules/textadept/keys.lua index a5e93225..cfc58f31 100644 --- a/modules/textadept/keys.lua +++ b/modules/textadept/keys.lua @@ -138,7 +138,7 @@ if not MAC then -- Windows and Linux key commands. --[[ - C: D H I J K M U + C: D I J K M U A: A B C D E F G H J K L M N P R 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 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 @@ -178,6 +178,7 @@ if not MAC 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 } -- TODO: { m_editing.transpose_chars } -- TODO: { m_editing.convert_indentation } keys.ac = { -- enClose in... @@ -296,7 +297,7 @@ else A: D E H J K L U Y CS: C D G H I J K L M O Q S T U V W X Y Z SA: A B C D H I J K L M N O Q R T U V X Y - CA: A C E J K L M N O Q R S T U V W X Y Z + CA: A C E J K L M N O Q R S U V W X Y Z CSA: A C D E H J K L M N O P Q R S T U V W X Y Z ]]-- @@ -331,6 +332,7 @@ else keys.esc = { m_editing.autocomplete_word, '%w_' } keys.cq = { m_editing.block_comment } -- TODO: { m_editing.current_word, 'delete' } + keys.cat = { m_editing.highlight_word } keys.ct = { m_editing.transpose_chars } -- TODO: { m_editing.convert_indentation } keys.cc = { -- enClose in... |