Merge pull request #51 from taybin/zmv_taglist
Add zmv (zsh wildcard move) support and TagBar
This commit is contained in:
4
.gitmodules
vendored
4
.gitmodules
vendored
@@ -70,10 +70,6 @@
|
|||||||
path = vim/bundle/tpope-vim-repeat
|
path = vim/bundle/tpope-vim-repeat
|
||||||
url = https://github.com/tpope/vim-repeat.git
|
url = https://github.com/tpope/vim-repeat.git
|
||||||
ignore=dirty
|
ignore=dirty
|
||||||
[submodule "vim/bundle/vim-scripts-taglist"]
|
|
||||||
path = vim/bundle/vim-scripts-taglist
|
|
||||||
url = https://github.com/vim-scripts/taglist.vim.git
|
|
||||||
ignore=dirty
|
|
||||||
[submodule "vim/bundle/tpope-vim-surround"]
|
[submodule "vim/bundle/tpope-vim-surround"]
|
||||||
path = vim/bundle/tpope-vim-surround
|
path = vim/bundle/tpope-vim-surround
|
||||||
url = https://github.com/tpope/vim-surround.git
|
url = https://github.com/tpope/vim-surround.git
|
||||||
|
|||||||
Submodule vim/bundle/vim-scripts-taglist deleted from 53041fbc45
@@ -142,9 +142,6 @@ nnoremap <silent> ss <C-w>s
|
|||||||
nnoremap <silent> + <C-w>+
|
nnoremap <silent> + <C-w>+
|
||||||
nnoremap <silent> - <C-w>-
|
nnoremap <silent> - <C-w>-
|
||||||
|
|
||||||
"open the taglist (method browser) using ,t
|
|
||||||
nnoremap <silent> ,T :TlistToggle<CR>
|
|
||||||
|
|
||||||
" create <%= foo %> erb tags using Ctrl-k in edit mode
|
" create <%= foo %> erb tags using Ctrl-k in edit mode
|
||||||
imap <silent> <C-K> <%= %><Esc>3hi
|
imap <silent> <C-K> <%= %><Esc>3hi
|
||||||
|
|
||||||
|
|||||||
@@ -36,6 +36,10 @@ __git_files () {
|
|||||||
# Always pushd when changing directory
|
# Always pushd when changing directory
|
||||||
setopt auto_pushd
|
setopt auto_pushd
|
||||||
|
|
||||||
|
# Use zmv, which is amazing
|
||||||
|
autoload -U zmv
|
||||||
|
alias zmv="noglob zmv -W"
|
||||||
|
|
||||||
# Fuzzy matching of completions for when you mistype them:
|
# Fuzzy matching of completions for when you mistype them:
|
||||||
zstyle ':completion:*' completer _complete _match _approximate
|
zstyle ':completion:*' completer _complete _match _approximate
|
||||||
zstyle ':completion:*:match:*' original only
|
zstyle ':completion:*:match:*' original only
|
||||||
|
|||||||
Reference in New Issue
Block a user