diff options
author | katherine <shmibs@shmibbles.me> | 2016-10-03 03:54:11 -0700 |
---|---|---|
committer | katherine <shmibs@shmibbles.me> | 2016-10-03 03:54:11 -0700 |
commit | 85c7c435c4ab74d2839ce080e859bfc4b21250b8 (patch) | |
tree | fbdfc79bcd273af06270a444e1f4636e84081901 /.zshrc-linux | |
parent | b966fdeb00ccbe66e1e9f4d78e34aedad72bb9e0 (diff) | |
download | dotfiles-85c7c435c4ab74d2839ce080e859bfc4b21250b8.tar.gz |
move 'f' to init/funcs
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 |