Sfoglia il codice sorgente

Added a "jump stack" view for Unite and altered my original "Make"
command so that it's still available if I ever want that functionality
(vim-dispatch wasn't working. It has been fixed, but it's still a
useful command to have).

wreed4 10 anni fa
parent
commit
34e386afea
2 ha cambiato i file con 3 aggiunte e 1 eliminazioni
  1. 1 0
      .gitignore
  2. 2 1
      .vimrc

+ 1 - 0
.gitignore

@@ -1,3 +1,4 @@
 bundle/**
 spell/**
 .netrwhist
+*.d

+ 2 - 1
.vimrc

@@ -190,6 +190,7 @@ call unite#filters#matcher_default#use(['matcher_fuzzy'])
 nnoremap <leader>e :<C-u>Unite -buffer-name=files -toggle file<CR>
 nnoremap <leader>r :<C-u>Unite -no-split -buffer-name=mru  -start-insert  file_mru<CR>
 nnoremap <leader>y :<C-u>Unite -buffer-name=yank    history/yank<CR>
+nnoremap <leader>j :<C-u>Unite -no-split -buffer-name=jump    jump<CR>
 nnoremap <leader>be :<C-u>Unite -no-split -buffer-name=buffer buffer<CR>
 nnoremap <leader>/ :<C-u>Unite -keep-focus -no-quit -buffer-name=search vimgrep:%<CR>
 "
@@ -387,7 +388,7 @@ command! -nargs=* -complete=file Todos Unite -keep-focus -auto-resize -no-quit -
 
 "Wrapper for make sequence
 "replaced by vim-dispatch plugin
-"command! -nargs=* Make execute '!clear' | make! <args> | cw
+command! -nargs=* MyMake execute '!clear' | make! <args> | cw
 
 " Perforce commands
 command! -nargs=0 PerfEdit execute "!p4 edit %"