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/keys.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/keys.lua')
-rw-r--r-- | modules/textadept/keys.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/textadept/keys.lua b/modules/textadept/keys.lua index f70a7027..90cb2000 100644 --- a/modules/textadept/keys.lua +++ b/modules/textadept/keys.lua @@ -312,7 +312,7 @@ local bindings = { [m_edit[_L['Match Brace']][2]] = {'ctrl+m', 'ctrl+m', 'meta+m'}, [m_edit[_L['Complete Word']][2]] = {'ctrl+\n', 'ctrl+esc', {'ctrl+meta+j', 'ctrl+\n'}}, - [textadept.editing.block_comment] = {'ctrl+/', 'ctrl+/', 'meta+/'}, + [textadept.editing.toggle_comment] = {'ctrl+/', 'ctrl+/', 'meta+/'}, [textadept.editing.transpose_chars] = {'ctrl+t', 'ctrl+t', 'ctrl+t'}, [textadept.editing.join_lines] = {'ctrl+J', 'ctrl+j', 'meta+j'}, [m_edit[_L['Filter Through']][2]] = {'ctrl+|', 'cmd+|', 'ctrl+\\'}, |