On Tue, Nov 15, 2005 at 12:14:51PM +0000, John Robson wrote:
> My file has:
> " bdoc("Query for host to connect to with SSH."),
> kpress(MOD1.."F4", "mod_query.query_ssh(_)"),
>
> bdoc("Query for host to connect to with SSH."),
> kpress(MOD2.."F4", "mod_query.query_ssh(_, ':ssh')"),
> "
>
> You did change the MOD2 to MOD1 as well didn't you?
>
Yes, I have no need for a version without arguments, so I just changed
my only query_ssh to not include ':ssh'.
With and without the ':ssh', if I type
-p 52222 myip.domain.org
I get displayed in an xterm,
Bad port ' 52222 myip.domain.org'
Press enter...
Whereas a simple `ssh -p 52222 myip.domain.org` in an xterm works fine.
Here's what I have in my cfg_bindings.lua
bdoc("Query for host to connect to with SSH."),
kpress(MOD1.."O", "mod_query.query_ssh(_)"),
Thanks for your help, any other suggestions. The query_ssh doesn't seem
to be very well documented.
Byron