1
0
Fork 0

fix cd command

This commit is contained in:
Andrey Orst 2018-09-22 17:23:53 +03:00
parent 7e38569682
commit 06cf545670

View file

@ -36,17 +36,17 @@ Default value:
str fzf_tmp "/tmp/" str fzf_tmp "/tmp/"
# default mappings # default mappings
map global fzf -docstring "open file" f '<esc>:fzf-file<ret>' map global fzf -docstring "open file" f '<esc>: fzf-file<ret>'
map global fzf -docstring "open buffer" b '<esc>:fzf-buffer<ret>' map global fzf -docstring "open buffer" b '<esc>: fzf-buffer<ret>'
map global fzf -docstring "find tag" t '<esc>:fzf-tag<ret>' map global fzf -docstring "find tag" t '<esc>: fzf-tag<ret>'
map global fzf -docstring "change directory" c '<esc>:fzf-cd<ret>' map global fzf -docstring "change directory" c '<esc>: fzf-cd<ret>'
map global fzf -docstring "edif file in git tree" g '<esc>:fzf-git<ret>' map global fzf -docstring "edif file in git tree" g '<esc>: fzf-git<ret>'
# Commands # Commands
define-command -docstring \ define-command -docstring \
"fzf-mode: Enter fzf-mode "fzf-mode: Enter fzf-mode
This is to be used in mappings to enter fzf-mode This is to be used in mappings to enter fzf-mode
For example: map global normal <c-p> ':fzf-mode<ret>' For example: map global normal <c-p> ': fzf-mode<ret>'
" \ " \
fzf-mode %{ evaluate-commands 'enter-user-mode fzf' } fzf-mode %{ evaluate-commands 'enter-user-mode fzf' }
@ -92,7 +92,7 @@ define-command -hidden fzf-tag %{
} }
define-command -hidden fzf-cd %{ define-command -hidden fzf-cd %{
fzf "change-directoryd $1" "find \( -path '*/.svn*' -o -path '*/.git*' \) -prune -o -type d -print" fzf "change-directory $1" "find \( -path '*/.svn*' -o -path '*/.git*' \) -prune -o -type d -print"
} }
define-command -hidden fzf -params 2 %{ exec %sh{ define-command -hidden fzf -params 2 %{ exec %sh{