aboutsummaryrefslogtreecommitdiffhomepage
path: root/modules
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+orbitalquark@users.noreply.github.com>2020-09-30 14:56:49 -0400
committerGravatar mitchell <70453897+orbitalquark@users.noreply.github.com>2020-09-30 14:56:49 -0400
commit854e83b9fed9c5382202c49d395eadf1502bb0e6 (patch)
tree8a3aa85343d30aee8af532950588a1588dedd8b6 /modules
parent0ef0b92ce0a683a7a2e5b0657090065174d5013e (diff)
Updated Lua autocompletion and documentation.
Diffstat (limited to 'modules')
-rw-r--r--modules/lua/ta_api2
-rw-r--r--modules/lua/ta_tags2
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/lua/ta_api b/modules/lua/ta_api
index 25d45aad..8af13d07 100644
--- a/modules/lua/ta_api
+++ b/modules/lua/ta_api
@@ -708,7 +708,7 @@ move_selected_lines_up buffer.move_selected_lines_up(buffer)\nShifts the selecte
msgbox ui.dialogs.msgbox(options)\nPrompts the user with a generic message box dialog defined by dialog options\ntable *options*, returning the selected button's index.\nIf *options*.`string_output` is `true`, returns the selected button's label.\nIf the dialog timed out, returns `0` or `"timeout"`. If the user canceled the\ndialog, returns `-1` or `"delete"`.\n@param options Table of key-value option pairs for the message box.\n\n * `title`: The dialog's title text.\n * `text`: The dialog's main message text.\n * `informative_text`: The dialog's extra informative text.\n * `icon`: The dialog's GTK stock icon name. Examples are\n "gtk-dialog-error", "gtk-dialog-info", "gtk-dialog-question", and\n "gtk-dialog-warning". The dialog does not display an icon by default.\n * `icon_file`: The dialog's icon file path. This option has no effect when\n `icon` is set.\n * `button1`: The right-most button's label. The default value is\n `_L['OK']`.\n * `button2`: The middle button's label.\n * `button3`: The left-most button's label. This option requires `button2`\n to be set.\n * `string_output`: Return the selected button's label (instead of its\n index) or the dialog's exit status instead of the button's index (instead\n of its exit code). The default value is `false`.\n * `width`: The dialog's pixel width.\n * `height`: The dialog's pixel height.\n * `float`: Show the dialog on top of all desktop windows. The default value\n is `false`.\n * `timeout`: The integer number of seconds the dialog waits for the user to\n select a button before timing out. Dialogs do not time out by default.\n@usage ui.dialogs.msgbox{title = 'EOL Mode', text = 'Which EOL?',\n icon = 'gtk-dialog-question', button1 = 'CRLF', button2 = 'CR',\n button3 = 'LF'}\n@return selected button or exit code
multi_edge_add_line view.multi_edge_add_line(view, column, color)\nAdds a new vertical line at column number *column* with color *color*, in\n"0xBBGGRR" format.\n@param view A view.\n@param column The column number to add a vertical line at.\n@param color The color in "0xBBGGRR" format.
multi_edge_clear_all view.multi_edge_clear_all(view)\nClears all vertical lines created by `view:multi_edge_add_line()`.\n@param view A view.
-multi_edge_column buffer.multi_edge_column (table, Read-only)\nTable of edge column positions per edge column number.\nA position of `-1` means no edge column was found.
+multi_edge_column view.multi_edge_column (table, Read-only)\nTable of edge column positions per edge column number.\nA position of `-1` means no edge column was found.
multi_paste buffer.multi_paste (number)\nThe multiple selection paste mode.\n\n* `buffer.MULTIPASTE_ONCE`\n Paste into only the main selection.\n* `buffer.MULTIPASTE_EACH`\n Paste into all selections.\n\nThe default value is `buffer.MULTIPASTE_ONCE`.
multiple_select_add_each buffer.multiple_select_add_each(buffer)\nAdds to the set of selections each occurrence of the main selection within\nthe target range.\nIf there is no selected text, the current word is used.\n@param buffer A buffer.
multiple_select_add_next buffer.multiple_select_add_next(buffer)\nAdds to the set of selections the next occurrence of the main selection\nwithin the target range, makes that occurrence the new main selection, and\nscrolls it into view.\nIf there is no selected text, the current word is used.\n@param buffer A buffer.
diff --git a/modules/lua/ta_tags b/modules/lua/ta_tags
index df467733..556d3278 100644
--- a/modules/lua/ta_tags
+++ b/modules/lua/ta_tags
@@ -710,7 +710,7 @@ move_selected_lines_up _HOME/core/.buffer.luadoc /^function move_selected_lines_
msgbox _HOME/core/.ui.dialogs.luadoc /^function msgbox(options) end$/;" f class:ui.dialogs
multi_edge_add_line _HOME/core/.view.luadoc /^function multi_edge_add_line(view, column, color) end$/;" f class:view
multi_edge_clear_all _HOME/core/.view.luadoc /^function multi_edge_clear_all(view) end$/;" f class:view
-multi_edge_column _HOME/core/.buffer.luadoc /^module('buffer')$/;" F class:buffer
+multi_edge_column _HOME/core/.view.luadoc /^module('view')$/;" F class:view
multi_paste _HOME/core/.buffer.luadoc /^module('buffer')$/;" F class:buffer
multiple_select_add_each _HOME/core/.buffer.luadoc /^function multiple_select_add_each(buffer) end$/;" f class:buffer
multiple_select_add_next _HOME/core/.buffer.luadoc /^function multiple_select_add_next(buffer) end$/;" f class:buffer