dotfiles/vim/shortcuts.vim

167 lines
4.7 KiB
VimL
Raw Normal View History

2020-12-06 02:29:15 +01:00
"""" Leader shortcuts
2023-01-19 17:33:11 +01:00
let mapleader = ','
2020-12-06 02:29:15 +01:00
" also use space as leader
map <Space> <leader>
2020-12-06 02:29:15 +01:00
nmap <leader>w :w!<CR>
command! W execute 'w !sudo tee % > /dev/null' <bar> edit!
" nmap <leader>W :w!<CR>
"Reload vimrc on config change
map <leader>e :e! ~/.vimrc<CR>
map <leader>ef :e! $DOTFILES/vim/functions.vim<CR>
map <leader>ec :e! $DOTFILES/vim/plugins_config.vim<CR>
map <leader>es :e! $DOTFILES/vim/shortcuts.vim<CR>
2021-03-15 10:30:39 +01:00
map <leader>ep :e! $DOTFILES/vim/plugs.vim<CR>
2020-12-06 02:29:15 +01:00
" Quickly open a markdown buffer for scribble
map <leader>x :e ~/buffer.md<CR>
map <leader>xx :e ~/projects/work/buffer.md<CR>
2020-12-06 02:29:15 +01:00
" Toggle paste mode on and off
nmap <leader>pp :setlocal paste!<CR>
" Re-select the text block just pasted
nnoremap <Leader>vv V`]
2021-09-26 16:02:21 +02:00
" Easy tab navigation with <leader>T
nmap <leader>Tn :tabnext<CR>
nmap <leader>TN :tabnew<CR>
nmap <leader>Tp :tabprev<CR>
nmap <leader>Tc :tabclose<CR>
2021-12-08 23:53:46 +01:00
nmap <C-W>n :tabnext<CR>
nmap <C-W>p :tabprev<CR>
nmap <C-W>N :tabnew<CR>
" move betweween functions/methods/classes definition,
" [m moves to the start of the previous method, ]m to the start of the next
" zz centers the result
map <Leader>] ]mzz
map <Leader>[ [mzz
2020-12-06 02:29:15 +01:00
" open quickfix
nmap <leader>cc :botright cope<CR>
2021-03-15 10:35:35 +01:00
" open loclist
nmap <leader>ll :botright lope<CR>
2020-12-06 02:29:15 +01:00
" close quickfix (also see <leader>C below)
nmap <leader>cx :hide<CR>
nmap <leader>co ggVGy:tabnew<CR>:set syntax=qf<CR>pgg
" next cope error
map <leader>N :cnext<CR>
2020-12-06 02:29:15 +01:00
" previous cope error
map <leader>P :cprevious<CR>
2020-12-06 02:29:15 +01:00
2020-12-28 12:16:19 +01:00
"disable highlighting for current word
map <silent> <leader><CR> :noh<CR>
map <leader>S :setlocal spell!<CR>
2020-12-06 02:29:15 +01:00
nnoremap <leader>M :bel copen<bar>silent make <bar>redraw!<CR>
2020-12-06 02:29:15 +01:00
nnoremap <leader>wz :call WinZoomToggle()<CR>
nnoremap <leader>q :close<CR>
2020-12-06 02:29:15 +01:00
nnoremap <leader>B :Bclose<CR>
2023-09-14 23:00:44 +02:00
nnoremap <leader>Q :close!<CR>
nnoremap <leader>k :Rg<CR>
2020-12-06 02:29:15 +01:00
"" Fugitive
nnoremap <leader>/ :vert Git<CR>
nnoremap <leader>\ :0Git<CR>
nnoremap <leader>d :Gvdiffsplit<CR>
nnoremap <leader>b :Git blame<CR>
nnoremap <leader>gp :Git push<CR>
nnoremap <leader>gl :Commits<CR>
nnoremap <leader>gL :BCommits<CR>
nnoremap <leader>gc :Git commit<CR>
nnoremap <leader>gpf :Git push --force-with-lease<CR>
2020-12-06 02:29:15 +01:00
"" Gitutter
nnoremap <leader>u :GitGutterBufferToggle<CR>
nnoremap <leader>L :GitGutterLineHighlightsToggle<CR>
nnoremap <leader>gp :GitGutterPrevHunk<CR>
nnoremap <leader>gn :GitGutterNextHunk<CR>
nnoremap <leader>gs :GitGutterStageHunk<CR>
nnoremap <leader>gu :GitGutterUndoHunk<CR>
2020-12-06 02:29:15 +01:00
"" Coverage Highlight
nnoremap <leader>H :HighlightCoverageForAll<CR>
" Ale
2020-12-06 02:29:15 +01:00
nmap <silent> <C-k> <Plug>(ale_previous_wrap)
nmap <silent> <C-j> <Plug>(ale_next_wrap)
nmap <leader>R :ALERepeatSelection<CR>
2020-12-06 02:29:15 +01:00
nmap <leader>sv :ALEGoToDefinition -vsplit<CR>
nmap <leader>sh :ALEGoToDefinition -split<CR>
nmap <leader>st :ALEGoToDefinition -tab<CR>
nmap <leader>A :ALEGoToDefinition<CR>
nmap <leader>n :ALEFindReferences -quickfix <bar> copen<CR>
2020-12-06 02:29:15 +01:00
nmap <leader>h :ALEHover<CR>
nmap <leader>r :ALERename<CR>
nmap <leader>` :ALELint<CR>
nmap <leader>F :ALEFix<CR>
2023-01-17 13:57:14 +01:00
nmap <leader>D :ALEToggle<CR>
2020-12-06 02:29:15 +01:00
map <leader>nn :NERDTreeToggle<CR>
"" fzf.vim
2020-12-06 02:29:15 +01:00
" Quickly find and open a recently opened file
map <leader>o :Buffers<CR>
map <leader>j :GFiles<CR>
map <leader>J :Files<CR>
map <leader>f :History<CR>
map <leader>T :BTags<CR>
map <leader>t :Tags<CR>
map <leader>l :Lines<CR>
" FIXME: Not using CtrlP anymore, replace this with fzf
""map <leader>c :CtrlPQuickfix<CR>
map <leader>s :Snippets<CR>
map <leader>; :Commands<CR>
map <leader>m :Maps<CR>
2020-12-06 02:29:15 +01:00
"" Indent Guides
map <leader>I :IndentGuidesToggle<CR>
map <leader>i :set cursorcolumn!<CR>
2021-04-11 13:24:17 +02:00
"" Goyo
nmap <leader>zz :Goyo<CR>
2022-12-23 12:12:25 +01:00
""" Tagbar
nmap <F8> :TagbarToggle<CR>
""Misc stuff
2023-01-19 17:33:11 +01:00
if g:uname ==? 'Darwin'
"" Mac specific stuff
2023-01-19 17:33:11 +01:00
elseif g:uname ==? 'Linux'
"" Linux specific stuff
2023-09-14 13:07:36 +02:00
xnoremap "+y y:call system("wl-copy", @")<cr>
map "+p :<C-U>let @"=substitute(system('wl-paste --no-newline'), '<C-v><C-m>', '', 'g') \| exec 'normal! ' . v:count1 . 'p'<cr>
2020-12-06 02:29:15 +01:00
else
"" Unknown platform
2020-12-06 02:29:15 +01:00
endif
" Add shortcuts to yank/paste to unnamed/unnamedplus clipboards
2021-05-19 10:39:12 +02:00
map <Leader>y "+y
2024-03-21 14:55:06 +01:00
map <Leader>p "+p
2021-11-16 14:34:46 +01:00
map <Leader>yp <Plug>yankstack_substitute_older_paste
map <leader>yn <Plug>yankstack_substitute_newer_paste
2021-04-11 13:24:17 +02:00
" Insert a python breakpoint
2021-11-16 14:36:26 +01:00
let @b = 'obreakpoint(<28>kr<1B><>a0j'
" visual mode mappings
2021-09-26 16:09:47 +02:00
vnoremap <silent> <leader>k :call VisualSelection('LAck', '')<CR>
vnoremap <silent> <leader>gs :call GitShowVisual()<CR>
vnoremap <silent> <leader>r :call VisualSelection('replace', '')<CR>
nnoremap K :exe "Rg " . expand("<cword>")<cr>
nnoremap GL :exe "Git log -L:" . expand("<cword>") . ":" . expand("%")<cr>
autocmd FileType python nnoremap T :Pytest function --pdb<CR>
" Ultisnips
map <Leader>ue :UltiSnipsEdit<cr>
nmap <F5> <ESC>:Gradle assembleDebug<CR>
nmap <F6> <ESC>:AndroidInstall debug<CR>
nmap <F7> <ESC>:AndroidLaunch debug<CR>