-
Notifications
You must be signed in to change notification settings - Fork 0
/
_vsvimrc
22 lines (20 loc) · 960 Bytes
/
_vsvimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
" Don't be afraid to add links to resharper commadns.
" https://www.jetbrains.com/resharper/help/Configuring_Keyboard_Shortcuts.html
" https://www.jetbrains.com/resharper/help/Reference__Keyboard_Shortcuts.html
" http://stackoverflow.com/questions/24022887/can-vsvim-map-keys-to-resharper-resharper-extendselection
nmap <C-]> :vsc Resharper.ReSharper_GotoImplementation<CR>
nmap <C-T> :vsc View.NavigateBackward<CR>
nmap <C-P> :vsc Resharper.Resharper_GotoType<CR>
" can't use ab so map 'ag instead
nmap 'agu :vsc Resharper.Resharper_GotoUsage<CR>
nmap 'aga :vsc Resharper.Resharper_NavigateTo<CR>
nmap 'agd :vsc Resharper.Resharper_GotoInheritors<CR>
" Sync with mac/.xvimrc
nmap 'dt :vsc Debug.ToggleBreakPoint<CR>
nmap 'dd :vsc Debug.StopDebugging<CR>
nmap 'dr :vsc Debug.Start<CR>
" TBD: Consider Implementing these others
nmap 'dc :xcmenucmd Continue<CR>
nmap 'du :xcmenucmd Test<CR>
nmap 'dn :xcmenucmd Step Over<CR>
nmap 'ds :xcmenucmd Step Into<CR>