aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/.ui.dialogs.luadoc3
-rw-r--r--modules/textadept/menu.lua2
-rw-r--r--properties.lua1
3 files changed, 4 insertions, 2 deletions
diff --git a/core/.ui.dialogs.luadoc b/core/.ui.dialogs.luadoc
index 523c423b..c60546f0 100644
--- a/core/.ui.dialogs.luadoc
+++ b/core/.ui.dialogs.luadoc
@@ -410,7 +410,8 @@ function standard_dropdown(options) end
-- @param options Table of key-value option pairs for the filtered list dialog.
--
-- * `title`: The dialog's title text.
--- * `text`: The dialog's main message text.
+-- * `informative_text`: The dialog's main message text.
+-- * `text`: The dialog's initial input text.
-- * `columns`: The list of string column names for list rows.
-- * `items`: The list of string items to show in the filtered list.
-- * `button1`: The right-most button's label. The default value is
diff --git a/modules/textadept/menu.lua b/modules/textadept/menu.lua
index 3e66ed27..a770237a 100644
--- a/modules/textadept/menu.lua
+++ b/modules/textadept/menu.lua
@@ -58,7 +58,7 @@ local menubar = {
{_L['Toggle _Block Comment'], editing.block_comment},
{_L['T_ranspose Characters'], editing.transpose_chars},
{_L['_Join Lines'], editing.join_lines},
- {_L['_Filter Through'],
+ {_L['_Filter Through'],
{ui.command_entry.enter_mode, 'filter_through', 'bash'}},
{ title = _L['_Select'],
{_L['Select to _Matching Brace'], {editing.match_brace, 'select'}},
diff --git a/properties.lua b/properties.lua
index 1525e6c2..1c36fc6f 100644
--- a/properties.lua
+++ b/properties.lua
@@ -150,6 +150,7 @@ buffer.call_tip_use_style = buffer.tab_width *
buffer.property['fold'] = '1'
--buffer.property['fold.by.indentation'] = '1'
--buffer.property['fold.line.comments'] = '1'
+--buffer.property['fold.on.zero.sum.lines'] = '1'
buffer.automatic_fold = buffer.AUTOMATICFOLD_SHOW + buffer.AUTOMATICFOLD_CLICK +
buffer.AUTOMATICFOLD_CHANGE
buffer.fold_flags = not CURSES and buffer.FOLDFLAG_LINEAFTER_CONTRACTED or 0