Last active
October 29, 2018 16:44
-
-
Save rafaeldelboni/e5b1be59e62d59291cbdb40a648b68a4 to your computer and use it in GitHub Desktop.
Vim Emulator Plugin for Visual Studio
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
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