From a51f16304c0a80b03f85e91457bf2895ac861dd9 Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Tue, 22 Jun 2021 12:55:32 +0530 Subject: [PATCH] nvim: after/ftplugin: git: Do not set bufhidden to wipe This resulted in not being able to go back to the previous buffer when using something like git log which is not we want. --- nvim/.config/nvim/after/ftplugin/git.vim | 2 -- 1 file changed, 2 deletions(-) diff --git a/nvim/.config/nvim/after/ftplugin/git.vim b/nvim/.config/nvim/after/ftplugin/git.vim index 1fdd70f..ea4a95a 100644 --- a/nvim/.config/nvim/after/ftplugin/git.vim +++ b/nvim/.config/nvim/after/ftplugin/git.vim @@ -1,5 +1,3 @@ -setlocal bufhidden=wipe - " Disable whitespace highlighting in git buffer autocmd! BufEnter DisableWhitespace