Skip to content

Commit

Permalink
Fix bash auto completion
Browse files Browse the repository at this point in the history
  • Loading branch information
tweksteen committed Aug 22, 2013
1 parent c89c4eb commit 3f04c37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/bash_completion
Expand Up @@ -15,7 +15,7 @@ _abrupt()

if [[ ${prev} == -s ]]; then
local sessions=$(ls ~/.abrupt/sessions)
COMPREPLY=( $(compgen -W "${sessions}" -- ${cur}) )
COMPREPLY=( $(compgen -o filenames -W '${sessions}' -- ${cur}) )
return 0
fi
}
Expand Down

0 comments on commit 3f04c37

Please sign in to comment.