Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
2answers
230 views

what is a good way to read STL and boost documentation in emacs?

I am familiar with using info and man commands in emacs, however boost and default STL do not come with man or info pages, instead they come as HTML documentation. especially boost does not seem to ...
5
votes
3answers
5k views

How can you use Javascript in terminal for w3m?

I found the text browser w3m which is the best so far in my opinion. However, it is main problem is Javascript. I cannot see comments at all in Stackoverflow when I use it. I am not sure what is the ...
4
votes
2answers
79 views

How to wait for an event in Emacs Lisp function?

I'm trying to write the simplest function: send a query to w3m browser and then find a particular place on the webpage: (defun w3m-define-word (word) (interactive "sDefine: ") (progn (w3m-search ...
4
votes
2answers
420 views

Emacs (or conkeror) Stack Overflow mode?

Have any of the heavy users put together an emacs or conkeror Stack Overflow mode that they'd wish to share? It'd be REALLY nice to compose posts and replies in a text editor rather than switching to ...
1
vote
0answers
72 views

Emacs w3m export highlighted area as text

How to perform copy text from emacs-w3m when the content is placed in a table. Currently, it copies the table-formatting and boundaries as well. Is there a export as text for w3m? Thanks Sandeep
0
votes
1answer
326 views

bdw-gc install failed on lion with brew

i am install w3m with brew on lion. when i use the origin formula the installation is filed. then i following the issues 7068 of homebrew update the bdw-gc.rb formula script require 'formula' class ...
0
votes
1answer
210 views

bash: find -exec and filenames

I want to strip the HTML out of few hundred files. Here's the command I've started with: find -name *.html -exec w3m {} > w3m {}.html.out \; The problem I've run into is that it created one ...
0
votes
1answer
100 views

How to swap up/down arrow key behaviour and C-n/C-p behaviour in emacs *w3m* buffer

I am trying to find a quick elisp fix that makes w3m under Emacs swap default behaviour of UP/DOWN arrows (moving between hyperlinks in loaded page), with C-n/C-p (moving to next and previous line in ...