fish-shell/share/functions/fish_config.fish
Fabian Homborg e410d47565 fish_config: Pick a python
Also remove a use of `eval` and `string escape`.

Fixes #3970.
2017-04-21 13:45:49 +02:00

10 lines
429 B
Fish

function fish_config --description "Launch fish's web based configuration"
set -lx __fish_bin_dir $__fish_bin_dir
if command -sq python3
python3 "$__fish_datadir/tools/web_config/webconfig.py" $argv
else if command -sq python2
python2 "$__fish_datadir/tools/web_config/webconfig.py" $argv
else if command -sq python
python "$__fish_datadir/tools/web_config/webconfig.py" $argv
end
end