Compare commits

...

2 Commits

Author SHA1 Message Date
Radovan Garabík 572618395c
Merge pull request #235 from scratchyone/patch-1
Fix grc.fish argument handling bug
2024-03-21 17:18:45 +02:00
scratchyone c7fc72d248
Update grc.fish 2024-03-05 16:23:23 -05:00
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