diff options
author | Lewis Russell <lewis6991@gmail.com> | 2022-08-25 14:41:02 +0100 |
---|---|---|
committer | Lewis Russell <lewis6991@gmail.com> | 2022-08-26 09:36:55 +0100 |
commit | 2498e9feb025361576603a0101c86393d211e31e (patch) | |
tree | eec06181d28ca9ee9d0e8aa6042a84726d9be6f3 /runtime | |
parent | 946c0aa66f7b52c406b2654b9869edcb79db5ada (diff) | |
download | rneovim-2498e9feb025361576603a0101c86393d211e31e.tar.gz rneovim-2498e9feb025361576603a0101c86393d211e31e.tar.bz2 rneovim-2498e9feb025361576603a0101c86393d211e31e.zip |
refactor: change FALSE/TRUE to false/true
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/api.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/api.txt b/runtime/doc/api.txt index a388592981..89baf84c86 100644 --- a/runtime/doc/api.txt +++ b/runtime/doc/api.txt @@ -750,7 +750,7 @@ nvim_eval_statusline({str}, {*opts}) *nvim_eval_statusline()* • highlights: (boolean) Return highlight information. • use_winbar: (boolean) Evaluate winbar instead of statusline. • use_tabline: (boolean) Evaluate tabline instead of - statusline. When |TRUE|, {winid} is ignored. Mutually + statusline. When true, {winid} is ignored. Mutually exclusive with {use_winbar}. Return: ~ @@ -759,7 +759,7 @@ nvim_eval_statusline({str}, {*opts}) *nvim_eval_statusline()* • width: (number) Display width of the statusline. • highlights: Array containing highlight information of the statusline. Only included when the "highlights" key in {opts} is - |TRUE|. Each element of the array is a |Dictionary| with these keys: + true. Each element of the array is a |Dictionary| with these keys: • start: (number) Byte index (0-based) of first character that uses the highlight. • group: (string) Name of highlight group. |