I'm fairly new to the fish shell (and shell scripting in general), but I thought I'd try to do something pretty basic: create a function to conditionally launch ruby or irb. Below is the complete function. It "works" in that that if I call myruby --version it reports to me the version of ruby I have (instead of the version of IRB), and when I call myruby without arguments, it launches a session of IRB.
However, I can't see what I'm typing in the terminal while using IRB. Everything is there, I just can't see it. Typing exit will allow be to quit and give me back the focus, where my text shows up again.
I've also tried changing the line to be exec irb and command irb without success -- they all do the same thing. Attempting to start IRB in the background and then forcibly shift focus with fg also fails.
function myruby
if test -z $argv
irb
else
ruby $argv
end
end
It seems like I must be missing something pretty basic, but I don't know what it is. The fish documentation isn't very helpful in this regard. They have an example of using exec to launch emacs, which does work. As does anything running outside the terminal itself.