Is Combo box supported ? #4743
-
What Operating System(s) are you running on?Windows Which Wayland compositor or X11 Window manager(s) are you using?No response WezTerm version20231203-124028-e3cd2e93 Ask your question!Hi,
Thanks for providing such a good proejct. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
|
WezTerm can parse your SSH config |
Beta Was this translation helpful? Give feedback.
-
|
If the built-in ssh config parsing doesn't meet your needs, you may want to look at https://wezfurlong.org/wezterm/config/lua/keyassignment/InputSelector.html for a way to show a list of items to the user and have them select one. If you want to allow the user to type in an ip address, then look at https://wezfurlong.org/wezterm/config/lua/keyassignment/PromptInputLine.html |
Beta Was this translation helpful? Give feedback.

There isn't currently a way to dynamically add an ssh domain for this, so your options are either to spawn it as a separate process with its own window, or spawn the
sshexecutable into a new tab/pane. The latter is fine on unix systems, but is less desirable on windows systems where you may be trying to avoid conpty.What I'd suggest is to use
InputSelectorto show the pre-defined list, add an option that will then triggerPromptInputLineif you want to enter a…