From 4dcdb517f0d906e2174e47f85559f85fd1dd4d4e Mon Sep 17 00:00:00 2001 From: Prabir Shrestha Date: Sun, 13 Jan 2019 13:47:13 -0800 Subject: [PATCH] add missing :LspTypeDefinition (#242) --- plugin/lsp.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/lsp.vim b/plugin/lsp.vim index 3a0d8ae5..268b4ef0 100644 --- a/plugin/lsp.vim +++ b/plugin/lsp.vim @@ -35,6 +35,7 @@ command! LspNextError call lsp#ui#vim#signs#next_error() command! LspPreviousError call lsp#ui#vim#signs#previous_error() command! LspReferences call lsp#ui#vim#references() command! LspRename call lsp#ui#vim#rename() +command! LspTypeDefinition call lsp#ui#vim#type_definition() command! LspWorkspaceSymbol call lsp#ui#vim#workspace_symbol() command! LspDocumentFormat call lsp#ui#vim#document_format() command! LspDocumentFormatSync call lsp#ui#vim#document_format_sync()