diff options
author | 2020-07-14 18:22:13 -0400 | |
---|---|---|
committer | 2020-07-14 18:22:13 -0400 | |
commit | 13bd039c243ef4e44bd037d1c3506d350f682c09 (patch) | |
tree | 57d8d1a0b78df2622c1789b13e4da00aaf188f3a /modules/textadept/menu.lua | |
parent | b821d05d828aec6ac6c070f00c9115f27f62f9c0 (diff) | |
download | textadept-13bd039c243ef4e44bd037d1c3506d350f682c09.tar.gz textadept-13bd039c243ef4e44bd037d1c3506d350f682c09.zip |
Renamed `textadept.editing.block_comment()` to `toggle_comment()`.
Diffstat (limited to 'modules/textadept/menu.lua')
-rw-r--r-- | modules/textadept/menu.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/textadept/menu.lua b/modules/textadept/menu.lua index 4d461abb..98f0f1cc 100644 --- a/modules/textadept/menu.lua +++ b/modules/textadept/menu.lua @@ -97,7 +97,7 @@ local default_menubar = { {_L['Complete Word'], function() textadept.editing.autocomplete('word') end}, - {_L['Toggle Block Comment'], textadept.editing.block_comment}, + {_L['Toggle Block Comment'], textadept.editing.toggle_comment}, {_L['Transpose Characters'], textadept.editing.transpose_chars}, {_L['Join Lines'], textadept.editing.join_lines}, {_L['Filter Through'], function() |