Merge pull request #235 from scratchyone/patch-1

Fix grc.fish argument handling bug
This commit is contained in:
Radovan Garabík 2024-03-21 17:18:45 +02:00 committed by GitHub
commit 572618395c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ for executable in $grc_plugin_execs
if isatty 1
grc $executable $argv
else
eval command $executable $argv
eval command $executable "$argv"
end
end
end