diff options
author | Sean Dewar <seandewar@users.noreply.github.com> | 2023-08-24 13:29:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-24 13:29:40 +0100 |
commit | daf7abbc4238dc269e22dd431bc4b1627ef9b6a1 (patch) | |
tree | 2f4c1c126c012adb16fd4eabf36a6dda00c60268 /src/nvim/eval.lua | |
parent | 53170579ce14ccbd777ab36a25a230a27aa4f7bd (diff) | |
download | rneovim-daf7abbc4238dc269e22dd431bc4b1627ef9b6a1.tar.gz rneovim-daf7abbc4238dc269e22dd431bc4b1627ef9b6a1.tar.bz2 rneovim-daf7abbc4238dc269e22dd431bc4b1627ef9b6a1.zip |
docs(builtin): small fixes (#24861)
Also make gen_eval_files.lua render vimdoc helpExamples properly if the line
begins with the `>` marker.
Diffstat (limited to 'src/nvim/eval.lua')
-rw-r--r-- | src/nvim/eval.lua | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/nvim/eval.lua b/src/nvim/eval.lua index 6d12e14f3c..d5dff3d70d 100644 --- a/src/nvim/eval.lua +++ b/src/nvim/eval.lua @@ -4730,7 +4730,7 @@ M.funcs = { clipboard |clipboard| provider is available. fname_case Case in file names matters (for Darwin and MS-Windows this is not present). - gui_running Nvim has a GUI. + gui_running Nvim has a GUI. iconv Can use |iconv()| for conversion. linux Linux system. mac MacOS system. @@ -10482,7 +10482,7 @@ M.funcs = { added. E.g, this checks if the screen has scrolled: >vim if state('s') == '' " screen has not scrolled - + < These characters indicate the state, generally indicating that something is busy: m halfway a mapping, :normal command, feedkeys() or @@ -11255,7 +11255,6 @@ M.funcs = { synconcealed(lnum, 4) [1, 'X', 2] synconcealed(lnum, 5) [1, 'X', 2] synconcealed(lnum, 6) [0, '', 0] - < ]=], name = 'synconcealed', params = { { 'lnum', 'integer' }, { 'col', 'integer' } }, |