From 1ae3156b29ff55c6ac05860d3331a8e067dd5593 Mon Sep 17 00:00:00 2001 From: Dmytro Meleshko Date: Mon, 7 Dec 2020 19:52:07 +0200 Subject: [PATCH] [nvim] arrrrrgh, fix one other misuse of --- nvim/plugin/files.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/plugin/files.vim b/nvim/plugin/files.vim index 79c0262..f07659f 100644 --- a/nvim/plugin/files.vim +++ b/nvim/plugin/files.vim @@ -29,7 +29,7 @@ nnoremap empty(&buftype) ? ":writewall\" : "\" let g:loaded_netrwPlugin = 1 " re-add Netrw's gx mappings since we've disabled them nnoremap gx call netrw#BrowseX(expand(''),netrw#CheckIfRemote()) - xnoremap gx :call netrw#BrowseXVis() + xnoremap gx call netrw#BrowseXVis() " }}}