summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKid <44045911+kidonng@users.noreply.github.com>2022-01-17 07:54:29 +0800
committerGitHub <noreply@github.com>2022-01-17 07:54:29 +0800
commit462a55358c51b203b08b187abfbc228e3138d086 (patch)
treea7b538c464c9454c9aab8a7a57d6610a59a0f95c
parent9f35e3ef6963331b740bb0bf5fd7cd1cabf005de (diff)
Quote more
-rw-r--r--shell/navi.plugin.fish4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/navi.plugin.fish b/shell/navi.plugin.fish
index 4c4a4c5..5ee6c89 100644
--- a/shell/navi.plugin.fish
+++ b/shell/navi.plugin.fish
@@ -11,11 +11,11 @@ function _navi_smart_replace
end
if test -z "$best_match"
- commandline -p (navi --print --query $current_process)
+ commandline -p (navi --print --query "$current_process")
else if test "$current_process" != "$best_match"
commandline -p $best_match
else
- commandline -p (navi --print --query $current_process)
+ commandline -p (navi --print --query "$current_process")
end
end