I need a suggestion for implementing split terminals, like vim has one for commands and one for file editing.
is there any library for that ?
For further actions, you may consider blocking this person and/or reporting abuse
I need a suggestion for implementing split terminals, like vim has one for commands and one for file editing.
is there any library for that ?
For further actions, you may consider blocking this person and/or reporting abuse
Rizèl Scarlett -
Gustavo Carvalho -
Xiao Ling -
Sukhpinder Singh -
Top comments (4)
As far as I know you can use vim's default resources, you just need to split your session using vertical or horizontal split then run
:terminal
, after it the current session will enable a terminal session for you do whatever you want to. I use vim as my personal editor and do it all the timeAny resources? I mean I've to lauch the terminals from the Python itself.
Look at curses or ncurses. It looks like they can do it. Any time I have looked at them they have been overkill for my use case.
Thanks