Skip to content

Commit

Permalink
Merge pull request #76 from fmthoma/reverse-fasd
Browse files Browse the repository at this point in the history
Reverse fasd input
  • Loading branch information
willghatch committed Jan 4, 2016
2 parents 40b3167 + d6663a6 commit 5348265
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sources/fasd.zsh
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
function zaw-src-fasd () {
candidates=($(fasd -al))
candidates=($(fasd -alR))
actions=(zaw-callback-append-to-buffer)
act_descriptions=("append to edit buffer")
options+=(-n -m)
}


function zaw-src-fasd-files () {
candidates=($(fasd -fl))
candidates=($(fasd -flR))
actions=(zaw-callback-append-to-buffer)
act_descriptions=("append to edit buffer")
options+=(-n -m)
}


function zaw-src-fasd-directories () {
candidates=($(fasd -dl))
candidates=($(fasd -dlR))
actions=(zaw-callback-append-to-buffer)
act_descriptions=("append to edit buffer")
options+=(-n -m)
Expand Down

0 comments on commit 5348265

Please sign in to comment.