From 3f04c378331c869286e759189992caa9e52d5920 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thi=C3=A9baud=20Weksteen?= Date: Thu, 22 Aug 2013 14:39:03 +1000 Subject: [PATCH] Fix bash auto completion --- bin/bash_completion | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/bash_completion b/bin/bash_completion index 06c2f91..4d87405 100644 --- a/bin/bash_completion +++ b/bin/bash_completion @@ -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 }