diff options
author | 2016-06-15 08:49:28 -0400 | |
---|---|---|
committer | 2016-06-15 08:49:28 -0400 | |
commit | fc20fd1a9b74c1059775446baf921181433801aa (patch) | |
tree | 5383e5cdb7b56fd72decb30915b7f0c0597dabe3 /modules/textadept/keys.lua | |
parent | d432e17da5cc5ab973e895e9f391c4e2b4def9bc (diff) | |
download | textadept-fc20fd1a9b74c1059775446baf921181433801aa.tar.gz textadept-fc20fd1a9b74c1059775446baf921181433801aa.zip |
Removed explicit detection and use of extinct CR line endings.
It's quite possible some of Textadept's functions didn't handle them properly
anyway.
Diffstat (limited to 'modules/textadept/keys.lua')
-rw-r--r-- | modules/textadept/keys.lua | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/modules/textadept/keys.lua b/modules/textadept/keys.lua index 79ed95ea..c95673c4 100644 --- a/modules/textadept/keys.lua +++ b/modules/textadept/keys.lua @@ -109,7 +109,6 @@ local M = {} -- Ctrl+Alt+Shift+T|^⇧T |M-T<br/>M-S-T|Toggle use tabs -- Ctrl+Alt+I |^I |M-I |Convert indentation -- None |None |None |CR+LF EOL mode --- None |None |None |CR EOL mode -- None |None |None |LF EOL mode -- None |None |None |UTF-8 encoding -- None |None |None |ASCII encoding @@ -441,7 +440,6 @@ keys[not OSX and (GUI and 'cai' or 'mi') or 'ci'] = textadept.editing.convert_indentation -- EOL Mode. -- TODO: m_buffer[_L['_EOL Mode']][_L['CRLF']][2] --- TODO: m_buffer[_L['_EOL Mode']][_L['CR']][2] -- TODO: m_buffer[_L['_EOL Mode']][_L['LF']][2] -- Encoding. -- TODO: m_buffer[_L['E_ncoding']][_L['_UTF-8 Encoding']][2] |