diff options
author | Patrice Peterson <patrice.peterson@mailbox.org> | 2020-08-19 18:17:08 +0200 |
---|---|---|
committer | Patrice Peterson <patrice.peterson@mailbox.org> | 2020-08-23 13:48:25 +0200 |
commit | ac05343a1023874243ee9fdd490c21c42a737157 (patch) | |
tree | 2466eb3c28b09b8e77ba7e1d3696555672fbb38e /src/nvim/api/vim.c | |
parent | 8c49e3d50959e24dadd688f56a18f104bd5fd934 (diff) | |
download | rneovim-ac05343a1023874243ee9fdd490c21c42a737157.tar.gz rneovim-ac05343a1023874243ee9fdd490c21c42a737157.tar.bz2 rneovim-ac05343a1023874243ee9fdd490c21c42a737157.zip |
Add docs for most vim.lsp methods
Most of the lsp.log will be addressed in a separate PR.
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> |