Skip to content

Instantly share code, notes, and snippets.

@rafaeldelboni
Last active October 29, 2018 16:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rafaeldelboni/e5b1be59e62d59291cbdb40a648b68a4 to your computer and use it in GitHub Desktop.
Save rafaeldelboni/e5b1be59e62d59291cbdb40a648b68a4 to your computer and use it in GitHub Desktop.
Vim Emulator Plugin for Visual Studio
set clipboard=unnamed
set multiple-cursors
set ignorecase
set smartcase
" easy window navigation
nnoremap <c-l> <c-w>l
nnoremap <c-j> <c-w>j
nnoremap <c-h> <c-w>h
nnoremap <c-k> <c-w>k
let mapleader = "\\"
map <Leader>n :vsc View.SolutionExplorer<CR>
nmap <C-P> :vsc Edit.GoToAll<CR>
nmap <C-N> :vsc Refactor.Rename<CR>
nmap <C-O> :vsc View.NavigateBackward<CR>
nmap <C-I> :vsc View.NavigateForward<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment