Gulshan Singh dixit:

>Is there any way to jump to the next input field in Lynx? For example, if I
>want to search for something in google, I have to keep pushing the down

Small workaround:

# DuckDuckGo search
ddg() {
        local _q _IFS

        _IFS=$IFS
        IFS=+
        _q="$*"
        IFS=$_IFS
        ${BROWSER:-lynx} 
"https://duckduckgo.com/?kp=-1&kl=wt-wt&kb=t&kh=1&kj=g2&km=l&ka=monospace&ku=1&ko=s&k1=-1&kv=1&t=debian&q=$_q";
}

# GooGle Search
ggs() {
        local _q _IFS

        _IFS=$IFS
        IFS=+
        _q="$*"
        IFS=$_IFS
        ${BROWSER:-lynx} 
"http://www.google.com/search?hl=la&pws=0&num=100&safe=off&q=$_q";
}

bye,
//mirabilos
-- 
18:47⎜<mirabilos:#!/bin/mksh> well channels… you see, I see everything in the
same window anyway      18:48⎜<xpt:#!/bin/mksh> i know, you have some kind of
telnet with automatic pong         18:48⎜<mirabilos:#!/bin/mksh> haha, yes :D
18:49⎜<mirabilos:#!/bin/mksh> though that's more tinyirc – sirc is more comfy

_______________________________________________
Lynx-dev mailing list
[email protected]
https://lists.nongnu.org/mailman/listinfo/lynx-dev

Reply via email to