diff options
-rw-r--r-- | core/.buffer.luadoc | 4 | ||||
-rw-r--r-- | core/ui.lua | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/core/.buffer.luadoc b/core/.buffer.luadoc index 28e38bcc..eb17e9d6 100644 --- a/core/.buffer.luadoc +++ b/core/.buffer.luadoc @@ -312,8 +312,8 @@ -- Display the horizontal scroll bar. -- The default value is `true`. -- @field highlight_guide (number) --- The indentation guide column number to highlight, or `0` to stop --- highlighting. +-- The indentation guide column number to also highlight when highlighting +-- matching braces, or `0` to stop indentation guide highlighting. -- @field idle_styling (number) -- The idle styling mode. -- This mode has no effect when `buffer.wrap_mode` is on. diff --git a/core/ui.lua b/core/ui.lua index 06d68776..85ffcba1 100644 --- a/core/ui.lua +++ b/core/ui.lua @@ -74,7 +74,7 @@ local function _print(buffer_type, ...) print_buffer:set_save_point() end --- --- Prints the given string messages to the buffer of type *buffer_type*. +-- Prints the given string messages to the buffer of string type *buffer_type*. -- Opens a new buffer for printing messages to if necessary. If the message -- buffer is already open in a view, the message is printed to that view. -- Otherwise the view is split (unless `ui.tabs` is `true`) and the message |