Skip to content

Commit

Permalink
Issue #6 Unable to handle file paths with spaces?
Browse files Browse the repository at this point in the history
edit command now allows paths with spaces
  • Loading branch information
samuelsnyder committed May 1, 2016
1 parent 8c98b87 commit daca705
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion outline
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ case "$1" in
if [[ ${#outline_files[@]} > 1 ]] ; then
echo "Choose outline to edit:"
select file in ${outline_files[@]##*/}; do
$EDITOR $TODO_DIR/$file
$EDITOR "$TODO_DIR/$file"
break
done
else
Expand Down

0 comments on commit daca705

Please sign in to comment.