summaryrefslogtreecommitdiffstats
path: root/runtime/doc/gnvim.txt
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/doc/gnvim.txt')
-rw-r--r--runtime/doc/gnvim.txt24
1 files changed, 23 insertions, 1 deletions
diff --git a/runtime/doc/gnvim.txt b/runtime/doc/gnvim.txt
index 2e524be..fc21676 100644
--- a/runtime/doc/gnvim.txt
+++ b/runtime/doc/gnvim.txt
@@ -12,7 +12,8 @@ CONTENTS *gnvim-contents*
1. Cursor Tooltip.......................|gnvim-cursor-tooltip|
2. Popupmenu............................|gnvim-popupmenu|
- 2. Cursor...............................|gnvim-cursor|
+ 3. Cursor...............................|gnvim-cursor|
+ 4. Ext options..........................|gnvim-ext-opts|
================================================================================
Cursor Tooltip *gnvim-cursor-tooltip*
@@ -59,6 +60,14 @@ The cursor also has animated position movement, which is on by default. To
disable it, use `GnvimCursorEnableAnimations 0` .
================================================================================
+Ext options *gnvim-ext-options*
+
+Gnvim utilizes many of the externalized UI options nvim offers. Some of these
+changes the visual representation of some nvim features and thus users might
+want to revert back to the "default" (e.g. TUI) functionality. This can be
+done either through cli flags or `gnvim#enable_ext_*` functions.
+
+================================================================================
Commands *gnvim-commands*
CursorTooltipStyle *CursorTooltipStyle*
@@ -68,6 +77,19 @@ CursorTooltipStyle *CursorTooltipStyle*
================================================================================
Functions *gnvim-functions*
+gnvim#enable_ext_tabline *gnvim#enable_ext_tabline*
+gnvim#enable_ext_cmdline *gnvim#enable_ext_cmdline*
+gnvim#enable_ext_popupmenu *gnvim#enable_ext_popupmeu*
+
+ Enable or disable the externalized tabline/cmdline/popupmenu.
+
+ Example: >
+ " disable:
+ call gnivm#enable_ext_tabline(0)
+ " enable:
+ call gnivm#enable_ext_tabline(1)
+<
+
gnvim#cursor_tooltip#load_style *gnvim#cursor_tooltip#load_style*
Loads `.tmTheme` file to be used in the cursor tooltip.