Move fzf functions to functions file
Signed-off-by: Marko Korhonen <marko.korhonen@reekynet.com>
This commit is contained in:
parent
61cd310b4a
commit
677da6b5bd
2 changed files with 8 additions and 7 deletions
|
@ -16,13 +16,20 @@ gpush() { git push $@ }
|
|||
# Syntax highlighting cat
|
||||
cat() { nvimpager -c $@ }
|
||||
|
||||
|
||||
rip() {
|
||||
abcde
|
||||
printf "Ripping done. Importing to library"
|
||||
beet import ~/Documents/Rip/flac/*
|
||||
}
|
||||
|
||||
# make fzf zsh plugin use ripgrep
|
||||
_fzf_compgen_dir() {
|
||||
rg --hidden --files --null --sort path "$1" 2>/dev/null | xargs -0 dirname | uniq
|
||||
}
|
||||
_fzf_compgen_path() {
|
||||
rg --files --hidden "$1" 2>/dev/null
|
||||
}
|
||||
|
||||
# search and install packages with fzf
|
||||
yi() {
|
||||
SELECTED_PKGS="$(yay -Slq | fzf --header='Install packages' -m --preview 'yay -Si {1}')"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue