Replies: 3 comments 1 reply
|
I forgot to mention the need to syntax highlight some content of the prompt line as it's being typed :) |
|
However TextView is designed to work more like a text editor than a shell window so some work would be needed to get the effect you want. If you want things like window frames and other views (tabs panes, tables, graphs etc) then this is definetly a good fit for Terminal.Gui 👍 One thing to note (since you metnioned shell) is that if you are spawning subprocesses you need to redirect the console input/output streams (see #1547 (comment) ) so as not to corrupt the console I/O stream to Terminal.Gui (in linux running with ncurses driver). |
|
Thanks for the answer ! |
Uh oh!
There was an error while loading. Please reload this page.
Hello!
I need to develop a shell like application, that is able to provide auto-completion suggestion in a combo list like way. The suggestions are provided dynamically according to the lexer/parser state . Is this is something 'easily' doable by gui.cs and would you recommend it for such a feature?
All reactions