diff options
author | 2020-08-08 23:55:24 -0400 | |
---|---|---|
committer | 2020-08-08 23:55:24 -0400 | |
commit | bb6fe84b0b04f77d0b3fb1ad53c340e525d5ea65 (patch) | |
tree | 34580a70f5ef114fb1dc1343fef666107c92df31 /modules/textadept/menu.lua | |
parent | 4aae314e67116f73fdbf309d23f15ab8dcf1156c (diff) | |
download | textadept-bb6fe84b0b04f77d0b3fb1ad53c340e525d5ea65.tar.gz textadept-bb6fe84b0b04f77d0b3fb1ad53c340e525d5ea65.zip |
Removed "View EOL" menu item and key binding.
It does not seem necessary anymore.
Diffstat (limited to 'modules/textadept/menu.lua')
-rw-r--r-- | modules/textadept/menu.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/textadept/menu.lua b/modules/textadept/menu.lua index 7a3e5465..b17c853f 100644 --- a/modules/textadept/menu.lua +++ b/modules/textadept/menu.lua @@ -288,7 +288,6 @@ local default_menubar = { {_L['UTF-16 Encoding'], function() set_encoding('UTF-16LE') end} }, SEPARATOR, - {_L['Toggle View EOL'], function() view.view_eol = not view.view_eol end}, {_L['Toggle Wrap Mode'], function() local first_visible_line = view.first_visible_line local display_line = view:visible_from_doc_line(first_visible_line) |