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 /src/nvim/api/vim.c | |
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 'src/nvim/api/vim.c')
-rw-r--r-- | src/nvim/api/vim.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c index ca98aeb34a..b164106cef 100644 --- a/src/nvim/api/vim.c +++ b/src/nvim/api/vim.c @@ -2092,7 +2092,7 @@ Array nvim_get_mark(String name, Dictionary opts, Error *err) /// 'fillchars'). Treated as single-width even if it isn't. /// - highlights: (boolean) Return highlight information. /// - use_winbar: (boolean) Evaluate winbar instead of statusline. -/// - use_tabline: (boolean) Evaluate tabline instead of statusline. When |TRUE|, {winid} +/// - use_tabline: (boolean) Evaluate tabline instead of statusline. When true, {winid} /// is ignored. Mutually exclusive with {use_winbar}. /// /// @param[out] err Error details, if any. @@ -2100,7 +2100,7 @@ Array nvim_get_mark(String name, Dictionary opts, Error *err) /// - str: (string) Characters that will be displayed on the 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 +/// the "highlights" key in {opts} is 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. |