Merge pull request #12708 from runiq/lsp-doc

Add docs for some methods in vim.lsp
This commit is contained in:
TJ DeVries
2020-08-25 09:52:22 -04:00
committed by GitHub
12 changed files with 1271 additions and 470 deletions

View File

@@ -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>