diff options
author | 2014-10-13 21:58:35 -0400 | |
---|---|---|
committer | 2014-10-13 21:58:35 -0400 | |
commit | 1a95f6cad42e99e477e2b1532f6a234b4b586006 (patch) | |
tree | 831f96f310f45c94c3a7c3692bdf7de7499c57e0 /modules/textadept/menu.lua | |
parent | b148931b259d4ebd407a5ee5352535df8b1db9ba (diff) | |
download | textadept-1a95f6cad42e99e477e2b1532f6a234b4b586006.tar.gz textadept-1a95f6cad42e99e477e2b1532f6a234b4b586006.zip |
Parameterize lexer and height for `ui.command_entry.enter_mode()`.
Also enable more accurate Lua command completion.
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 0cbf4590..e427e072 100644 --- a/modules/textadept/menu.lua +++ b/modules/textadept/menu.lua @@ -103,7 +103,7 @@ local menubar = { {_L['_Jump to'], editing.goto_line}, }, { title = _L['_Tools'], - {_L['Command _Entry'], {ui.command_entry.enter_mode, 'lua_command'}}, + {_L['Command _Entry'], {ui.command_entry.enter_mode, 'lua_command', 'lua'}}, {_L['Select Co_mmand'], utils.select_command}, SEPARATOR, {_L['_Run'], textadept.run.run}, |