diff options
author | Ashkan Kiani <ashkan.k.kiani@gmail.com> | 2019-11-20 16:03:32 -0800 |
---|---|---|
committer | Ashkan Kiani <ashkan.k.kiani@gmail.com> | 2019-11-20 16:03:32 -0800 |
commit | a4b7004f489030d9ee7e3bbfc156ab540744279b (patch) | |
tree | 216450a3988d02c844a8417f3c4b02e6cdfca970 /runtime/lua/vim/lsp/protocol.lua | |
parent | 2d580756ca707945c01703d404e10f4bf412a72c (diff) | |
download | rneovim-a4b7004f489030d9ee7e3bbfc156ab540744279b.tar.gz rneovim-a4b7004f489030d9ee7e3bbfc156ab540744279b.tar.bz2 rneovim-a4b7004f489030d9ee7e3bbfc156ab540744279b.zip |
Move everything to buf & default_callbacks
- Rename builtin_callbacks to default_callbacks and slightly change its
semantics:
- No longer contains the default implementations. Instead, any
default_callbacks will be used in preference for our .buf methods.
- Add this to the docs.
Diffstat (limited to 'runtime/lua/vim/lsp/protocol.lua')
-rw-r--r-- | runtime/lua/vim/lsp/protocol.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/runtime/lua/vim/lsp/protocol.lua b/runtime/lua/vim/lsp/protocol.lua index 1413a88ce2..1f51e7bef7 100644 --- a/runtime/lua/vim/lsp/protocol.lua +++ b/runtime/lua/vim/lsp/protocol.lua @@ -10,7 +10,6 @@ end --[=[ -- Useful for interfacing with: --- https://github.com/microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md -- https://github.com/microsoft/language-server-protocol/raw/gh-pages/_specifications/specification-3-14.md function transform_schema_comments() nvim.command [[silent! '<,'>g/\/\*\*\|\*\/\|^$/d]] |