diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/textadept/keys.lua | 2 | ||||
-rw-r--r-- | modules/textadept/menu.lua | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/modules/textadept/keys.lua b/modules/textadept/keys.lua index 7701f772..8221a5d4 100644 --- a/modules/textadept/keys.lua +++ b/modules/textadept/keys.lua @@ -115,7 +115,6 @@ local M = {} -- None |None |None |UTF-8 encoding -- None |None |None |ASCII encoding -- None |None |None |ISO-8859-1 encoding --- None |None |None |MacRoman encoding -- None |None |None |UTF-16 encoding -- Ctrl+Shift+L |⌘⇧L |M-S-L |Select lexer... -- F5 |F5 |^L<br/>F5 |Refresh syntax highlighting @@ -447,7 +446,6 @@ keys[not OSX and (GUI and 'cai' or 'mi') -- 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['_MacRoman 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] diff --git a/modules/textadept/menu.lua b/modules/textadept/menu.lua index e95cd287..03dd5a49 100644 --- a/modules/textadept/menu.lua +++ b/modules/textadept/menu.lua @@ -284,7 +284,6 @@ local default_menubar = { {_L['_UTF-8 Encoding'], function() set_encoding('UTF-8') end}, {_L['_ASCII Encoding'], function() set_encoding('ASCII') end}, {_L['_ISO-8859-1 Encoding'], function() set_encoding('ISO-8859-1') end}, - {_L['_MacRoman Encoding'], function() set_encoding('MacRoman') end}, {_L['UTF-1_6 Encoding'], function() set_encoding('UTF-16LE') end} }, SEPARATOR, |