functions/__fish_print_cmd_args_without_options: Stringify

[ci skip]
This commit is contained in:
Fabian Homborg 2019-01-26 19:19:47 +01:00
parent b8fd08811c
commit c775335b2a

View File

@ -1,3 +1,3 @@
function __fish_print_cmd_args_without_options
__fish_print_cmd_args | grep '^[^-]'
__fish_print_cmd_args | string match -re '^[^-]'
end