achiurizo / terminitor

Check out the new terminitor here: https://github.com/achiu/consular
https://github.com/achiu/consular
MIT License
108 stars 3 forks source link

Is iTerm2 supported? #3

Open mattfordham opened 12 years ago

mattfordham commented 12 years ago

I added the OSX core, but I still get a "No valid core was found!. Exiting..." message. Thanks!

achiurizo commented 12 years ago

I'm still adding in iTerm back in. I'll post back here shortly when I'm finished.

mattfordham commented 12 years ago

Great, thanks!

achiurizo commented 12 years ago

@mattfordham I've added support for iTerm here. Let me know if this works for you. Thanks!

mattfordham commented 12 years ago

Thanks! I installed and gave it a spin. Unfortunately, there seems to be an issue with tabs and panes. Running the following, as outlined in the README, opens a new tab but doesn't create any panes. I am using the latest iTerm2: Build 1.0.0.20111020.

tab do
  pane "gitx"    # first pane
    pane do      # second pane level => horizontal split
      run "irb"
    end
  pane 'ls'      # first pane level => vertical split
end
achiurizo commented 12 years ago

@mattfordham yeah I'm aware of this issue. I should update the README. to work around it, don't wrap the pane calls in tab. you could do:

pane do
  pane 'hey'
end
pane do
  pane 'ls'
end

and that would work. Alternatively, you can use window instead of tab to wrap the panes as well. I'll see if i can fix that issue though.