From 1a76ae3dec6dcdeafe424f6f1b13117ae34c1ffc Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Tue, 7 Apr 2020 17:45:49 +0200 Subject: [PATCH] [ADD][VIM] ALE related mappings --- vim/.vim/after/plugin/mappings/ale.vim | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 vim/.vim/after/plugin/mappings/ale.vim diff --git a/vim/.vim/after/plugin/mappings/ale.vim b/vim/.vim/after/plugin/mappings/ale.vim new file mode 100644 index 0000000..dc02288 --- /dev/null +++ b/vim/.vim/after/plugin/mappings/ale.vim @@ -0,0 +1,8 @@ +" Use ALE LSP-powered go-to-definition +nnoremap gd :ALEGoToDefinition + +" Use ALE LSP-powered find-references +nnoremap gr :ALEFindReferences + +" Use ALE LSP-powered symbol information +nnoremap K :ALEHover