diff options
author | TJ DeVries <devries.timothyj@gmail.com> | 2020-08-25 09:52:22 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-25 09:52:22 -0400 |
commit | 43202964f39eed4e28fd8ad6ad0ec79a1868c33f (patch) | |
tree | da9abce08cca5b7502f0a5a6320eba52ee42b8e8 /src/nvim/api/vim.c | |
parent | 8a333afec53a48c90de7b0bde30f9db2d02d1898 (diff) | |
parent | 9d9edebceb73657899256430ed3e2f49c92898a8 (diff) | |
download | rneovim-43202964f39eed4e28fd8ad6ad0ec79a1868c33f.tar.gz rneovim-43202964f39eed4e28fd8ad6ad0ec79a1868c33f.tar.bz2 rneovim-43202964f39eed4e28fd8ad6ad0ec79a1868c33f.zip |
Merge pull request #12708 from runiq/lsp-doc
Add docs for some methods in vim.lsp
Diffstat (limited to 'src/nvim/api/vim.c')
-rw-r--r-- | src/nvim/api/vim.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c index d6f95c7a5f..305d5e6968 100644 --- a/src/nvim/api/vim.c +++ b/src/nvim/api/vim.c @@ -203,10 +203,10 @@ Integer nvim_get_hl_id_by_name(String name) /// flags. This is a blocking call, unlike |nvim_input()|. /// /// On execution error: does not fail, but updates v:errmsg. -// -// If you need to input sequences like <C-o> use nvim_replace_termcodes -// to replace the termcodes and then pass the resulting string to -// nvim_feedkeys. You'll also want to enable escape_csi. +/// +/// If you need to input sequences like <C-o> use |nvim_replace_termcodes| +/// to replace the termcodes and then pass the resulting string to +/// nvim_feedkeys. You'll also want to enable escape_csi. /// /// Example: /// <pre> |