aboutsummaryrefslogtreecommitdiffhomepage
path: root/core/.buffer.luadoc
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2020-06-09 14:41:28 -0400
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2020-06-09 14:41:28 -0400
commit1702ce40cbcbfe53d9b57f3e9cde8ecfc441800a (patch)
tree98d3045b5e163a3755d9b48e16b3f4b63b1e04e1 /core/.buffer.luadoc
parentada6a867c87be0ed746cdb94c28ff24f8288280c (diff)
Prefer `view.call_tip_*` instead of `buffer.call_tip_*`.
Diffstat (limited to 'core/.buffer.luadoc')
-rw-r--r--core/.buffer.luadoc30
1 files changed, 0 insertions, 30 deletions
diff --git a/core/.buffer.luadoc b/core/.buffer.luadoc
index 74b65f56..2fc44a69 100644
--- a/core/.buffer.luadoc
+++ b/core/.buffer.luadoc
@@ -100,8 +100,6 @@
-- @field back_space_un_indents (bool)
-- Un-indent text when backspacing within indentation.
-- The default value is `false`.
--- @field call_tip_pos_start (number, Write-only)
--- The position in which backspacing beyond it hides a visible call tip.
-- @field caret_sticky (number)
-- The caret's preferred horizontal position when moving between lines.
--
@@ -547,34 +545,6 @@ function begin_undo_action(buffer) end
function brace_match(buffer, pos, max_re_style) end
---
--- Returns whether or not a call tip is visible.
--- @param buffer A buffer.
--- @return bool
-function call_tip_active(buffer) end
-
----
--- Removes a call tip from view.
--- @param buffer A buffer.
-function call_tip_cancel(buffer) end
-
----
--- Returns a call tip's display position.
--- @param buffer A buffer.
--- @return number
-function call_tip_pos_start(buffer) end
-
----
--- Displays a call tip at position *pos* with string *text* as the call tip's
--- contents.
--- Any "\001" or "\002" bytes in *text* are replaced by clickable up or down
--- arrow visuals, respectively. These may be used to indicate that a symbol has
--- more than one call tip, for example.
--- @param buffer A buffer.
--- @param pos The position in *buffer* to show a call tip at.
--- @param text The call tip text to show.
-function call_tip_show(buffer, pos, text) end
-
----
-- Returns whether or not there is an action to be redone.
-- @param buffer A buffer.
-- @return bool