diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2022-04-24 02:01:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-23 17:01:01 -0700 |
commit | 92f7286377cb077cb42484a83740a8c95f8ae7f1 (patch) | |
tree | ba5ef19c90613d403412485f6012ac78399e9cc4 /runtime | |
parent | cfaf7440fceb5967245966332d38794f5106552d (diff) | |
download | rneovim-92f7286377cb077cb42484a83740a8c95f8ae7f1.tar.gz rneovim-92f7286377cb077cb42484a83740a8c95f8ae7f1.tar.bz2 rneovim-92f7286377cb077cb42484a83740a8c95f8ae7f1.zip |
docs: make docstring consistent with parameters #18178
Closes: https://github.com/neovim/neovim/issues/12691
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/api.txt | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/runtime/doc/api.txt b/runtime/doc/api.txt index 5b045f80ff..f4942d7f26 100644 --- a/runtime/doc/api.txt +++ b/runtime/doc/api.txt @@ -538,9 +538,9 @@ nvim__get_runtime({pat}, {all}, {*opts}) *nvim__get_runtime()* {fast} Parameters: ~ - {pat} pattern of files to search for - {all} whether to return all matches or only the first - {options} is_lua: only search lua subdirs + {pat} pattern of files to search for + {all} whether to return all matches or only the first + {opts} is_lua: only search lua subdirs Return: ~ list of absolute paths to the found files @@ -2325,12 +2325,12 @@ nvim_buf_set_text({buffer}, {start_row}, {start_col}, {end_row}, {end_col}, only. Parameters: ~ - {buffer} Buffer handle, or 0 for current buffer - {start_row} First line index - {start_column} First column - {end_row} Last line index - {end_column} Last column - {replacement} Array of lines to use as replacement + {buffer} Buffer handle, or 0 for current buffer + {start_row} First line index + {start_col} First column + {end_row} Last line index + {end_col} Last column + {replacement} Array of lines to use as replacement nvim_buf_set_var({buffer}, {name}, {value}) *nvim_buf_set_var()* Sets a buffer-scoped (b:) variable |