diff options
author | 2019-07-30 16:52:48 -0400 | |
---|---|---|
committer | 2019-07-30 16:52:48 -0400 | |
commit | ed91aa74ec7dacf3d4f7f794ac571bd7ffcc8cc0 (patch) | |
tree | 2ce277552055cd023df31d8f4272fecfb59c139d /modules/textadept/keys.lua | |
parent | 68abf86021d8dc505ac0b6c91f2b5941a8da9d15 (diff) | |
download | textadept-ed91aa74ec7dacf3d4f7f794ac571bd7ffcc8cc0.tar.gz textadept-ed91aa74ec7dacf3d4f7f794ac571bd7ffcc8cc0.zip |
Use CP1252 instead of ISO-8859-1.
CP1252 is a superset of ISO-8859-1.
Diffstat (limited to 'modules/textadept/keys.lua')
-rw-r--r-- | modules/textadept/keys.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/textadept/keys.lua b/modules/textadept/keys.lua index 5724ff42..0d66cbec 100644 --- a/modules/textadept/keys.lua +++ b/modules/textadept/keys.lua @@ -112,7 +112,7 @@ local M = {} -- None |None |None |LF EOL mode -- None |None |None |UTF-8 encoding -- None |None |None |ASCII encoding --- None |None |None |ISO-8859-1 encoding +-- None |None |None |CP-1252 encoding -- None |None |None |UTF-16 encoding -- Ctrl+Alt+Enter |^↩ |None |Toggle view EOL -- Ctrl+Alt+\\ |^\\ |None |Toggle wrap mode @@ -439,7 +439,7 @@ keys[not OSX and (GUI and 'cai' or 'mi') -- Encoding. -- TODO: m_buffer[_L['E_ncoding']][_L['_UTF-8 Encoding']][2] -- TODO: m_buffer[_L['E_ncoding']][_L['_ASCII Encoding']][2] --- TODO: m_buffer[_L['E_ncoding']][_L['_ISO-8859-1 Encoding']][2] +-- TODO: m_buffer[_L['E_ncoding']][_L['_CP-1252 Encoding']][2] -- TODO: m_buffer[_L['E_ncoding']][_L['UTF-1_6 Encoding']][2] if GUI then keys[not OSX and 'ca\n' or 'c\n'] = m_buffer[_L['Toggle View _EOL']][2] |