The w3m tag has no wiki summary.
0
votes
1answer
196 views
Emacs (24) loads and runs emacs-w3m, but doesn't use it for Lisp HyperSpec
I'm running an Emacs 24 + SLIME set up currently and am trying to get the Common Lisp HyperSpec to display in Emacs via emacs-w3m. Presently, if I enter into the mini-buffer
M-x w3m it does indeed ...
1
vote
2answers
258 views
Link extraction from a google page in bash
I'm making a script that takes all the links from a google page in bash. I get the google page with the w3m utility and this script:
#!/bin/bash
# performs a google search using a word in input
...
0
votes
0answers
71 views
How do I generate JDK 7 api docs as HTML tables rather than CSS for display in emacs-w3m
JDK 6 api javadocs use HTML tables for layout.
These tables display nicely in emacs-w3m, which means I can browse api docs without leaving the emacs.
JDK 7 api javadocs use CSS for layout.
This ...
0
votes
1answer
67 views
How can I open the link use the external default browser after loading the w3m?
After loading the w3m package, all the links are opened with the w3m now. It is fine. But how can I open it with the default external browser, like firefox, in Windows?
The ...
3
votes
0answers
139 views
Emacs w3m export highlighted area as text
How can I 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?
11
votes
2answers
327 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 ...
1
vote
1answer
417 views
How to set user agent in w3m
I'm using w3m. How do I go about overriding the user agent of this text based web browser? I have tried setting -header "User-Agent: blah" as an example, but I get the following error:
w3m: Can't ...
1
vote
1answer
175 views
Configure w3m with Emacs Error
I am trying to configure and use w3m with emacs 23. I have w3m on my system and have downloaded and make/install emacs-w3m 1.4.4. However, when I put (require 'w3m-load) into my .emacs file it ...
0
votes
2answers
572 views
Scraping simple javascript page
I would like to scrape the data of this web site ( http://www.oddsportal.com/matches/soccer ) in order to get a plain text file with the match info and the odds info in this way:
00:30 Criciuma - ...
4
votes
2answers
529 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
1answer
797 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 ...
4
votes
2answers
197 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 ...
3
votes
1answer
1k 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
150 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 ...
5
votes
3answers
7k 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 ...
