diff options
Diffstat (limited to '.zshrc-linux')
-rw-r--r-- | .zshrc-linux | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/.zshrc-linux b/.zshrc-linux index 16d4add..b5de6cd 100644 --- a/.zshrc-linux +++ b/.zshrc-linux @@ -29,21 +29,6 @@ b2h() { echo "${val}${suffixes[$sindex]}" } -if [[ $(whence fzf) ]]; then - f() { - local file - fzf --color=16 --black \ - --bind=ctrl-b:page-up,ctrl-f:page-down \ - | read file - - [[ -z "$file" ]] && return - - [[ $(xclip -o 2>/dev/null) ]] || { echo "${file:a}"; return } - - echo "${file:a}" | xclip -i -selection clipboard - } -fi - # ignore non-tracked files git() { if [[ $# -gt 0 ]] && [[ "$1" == "status" ]]; then |