diff options
-rw-r--r-- | core/.buffer.luadoc | 6 | ||||
-rw-r--r-- | doc/manual.md | 2 |
2 files changed, 2 insertions, 6 deletions
diff --git a/core/.buffer.luadoc b/core/.buffer.luadoc index 8060a41d..fd6a7ffd 100644 --- a/core/.buffer.luadoc +++ b/core/.buffer.luadoc @@ -240,8 +240,6 @@ -- to [`buffer.edge_colour`](). -- @field encoding (string or nil) -- The string encoding of the file, or `nil` for binary files. --- @field encoding_bom (string) --- The byte-order mark (if any) of the file. -- @field end_at_last_line (bool) -- Disable scrolling past the last line. -- The default value is `true`. @@ -767,10 +765,6 @@ -- @field style_fore (table) -- Table of foreground colors, in "0xBBGGRR" format, of text for style numbers -- from `0` to `255`. --- @field style_hot_spot (table) --- Table of flags that indicate whether or not text is clickable for style --- numbers from `0` to `255`. --- The default values are `false`. -- @field style_italic (table) -- Table of flags that indicate whether or not text is italic for style -- numbers from `0` to `255`. diff --git a/doc/manual.md b/doc/manual.md index c0599986..992c1bd2 100644 --- a/doc/manual.md +++ b/doc/manual.md @@ -1350,6 +1350,8 @@ commands for [`buffer`][], [`view`][] and [`ui`][]: for example you may reduce the `buffer:append_text('foo')` command to `append_text('foo')`. These commands are runnable on startup using the `-e` and `--execute` command line switches. +Pressing `Ctrl+H` (`^H` | `M-H` or `M-S-H`) shows help for the current command. +  [Lua API]: api.html |