Live data from Hacker News

Anyone here use lynx while browse HN?

news.ycombinator.com

1–8 of 8 posts

Re: Anyone here use lynx while browse HN?

#6
> any cli browser do you guys recommend?

When I want a cli browser, I typically use elinks. I like its mouse support and how it renders pages. Regarding vim keybindings, taking a look at the manual right now, I see that the keybindings are configurable, so you can just define the vi-style keybindings yourself.

Re: Anyone here use lynx while browse HN?

#7
post #5

I use "lynx -dump URL | vim -" so I can read the text with vim keybinding. :) I have it as a shell function called "l" so I can invoke it with "l URL".

hi, thanks ! its easier to read a single static site within vim. It lost the power when the page contain many links.

Re: Anyone here use lynx while browse HN?

#8
post #6

> any cli browser do you guys recommend? When I want a cli browser, I typically use elinks. I like its mouse support and how it renders pages. Regarding vim keybindings, taking a look at the manual right now, I see that the keybindings are configurable, so you can just define the vi-style keybindings yourself.

thank you !