summaryrefslogtreecommitdiff
path: root/v-editor.sh
diff options
context:
space:
mode:
Diffstat (limited to 'v-editor.sh')
-rw-r--r--v-editor.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/v-editor.sh b/v-editor.sh
index 09bccf5..e6df2b3 100644
--- a/v-editor.sh
+++ b/v-editor.sh
@@ -3,11 +3,11 @@
run() {
local editor=$1; shift
local cmd
- IFS='|' cmd=($(eval printf '%s\|' "$editor"))
+ eval "cmd=($(printf '%q ' "$editor"))"
cmd+=("$@")
"${cmd[@]}"
}
(if [ -n "$DISPLAY" ]; then run "${VISUAL:-$SELECTED_EDITOR}" "$@"
else run "${EDITOR:-$SELECTED_EDITOR}" "$@"
-fi) || run "${ALTERNATE_EDITOR:-false}" "$@"
+ fi) || run "${ALTERNATE_EDITOR:-false}" "$@"