Created
February 17, 2020 02:08
-
-
Save mhanberg/dd9377163be770930e6eedb81b2fe61e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| augroup vimrc | |
| autocmd! | |
| autocmd FileType netrw call s:RemoveNetrwMap() | |
| augroup END | |
| function s:RemoveNetrwMap() | |
| if hasmapto('<Plug>NetrwRefresh') | |
| unmap <buffer> <C-l> | |
| endif | |
| endfunction |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment