sedwards2009 / extraterm

The swiss army chainsaw of terminal emulators
https://extraterm.org
MIT License
2.54k stars 115 forks source link

Inject Fish Shell Integration Crashes Or Fails #175

Open gardinermichael opened 5 years ago

gardinermichael commented 5 years ago

Shell Mode: /usr/bin/fish/

I have managed to turn on frames for Bash by running the command palette option (the script did not work, unless I'm misunderstanding how to use it), but I'm not having the same luck with fish. I have not tried zsh.

Kynolin commented 5 years ago

Calling the script like that is running the script in a new fish session and exiting, meaning it's not in the current interactive shell. You need to source the file in the current shell like this. (dot, space, then the script) . setup_extraterm_fish.fish

Here's an example of how mine is setup in my home directory (where I placed my setup scripts). This is from my ~/.config/fish/config.fish file. . ~/extraterm-commands/setup_extraterm_fish.fish

Edit: Typo.