[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Being able to use familiar Emacs movement bindings while browsing a web page probably fascinates you already. Believe it or not, there is more! Since we value your time, we have added keys to move the point, scroll the page or find links in a very fast way. When you master them, you will understand how handy they are.
The keys are assigned so that scroll commands can be called using
shorter keystrokes than standard Emacs key bindings. And since places
where you can input text are pretty specific in web pages
(see section 3.8 Filling in HTML forms), most keys have special meanings and aren't
assigned to self-insert-command
anymore.
view-mode
(w3m-scroll-up-or-next-url
).
view-mode
(w3m-scroll-down-or-previous-url
).
w3m-horizontal-scroll-columns
variable, default 10
(w3m-scroll-left
).
w3m-horizontal-scroll-columns
variable, default 10
(w3m-scroll-right
).
w3m-horizontal-shift-columns
variable, default 2
(w3m-shift-left
).
w3m-horizontal-shift-columns
variable, default 2
(w3m-shift-right
).
w3m-horizontal-recenter
).
The w3m-mode
major mode defines commands to move to various kinds
of things; namely links, forms, and images (whether they are displayed
or not).
Let's consider this simple example: suppose we want to search for a word on the widely-known Google search engine. Step one: open http://www.google.com in emacs-w3m. Step two: once the page is loaded, hit ]. Tadaa! The point has moved to the first form input in the page, you can now hit RET to enter something in it, and then C-c C-c to submit. Without this command, you would have had to move into the page using C-n, C-f and so forth, it would have been a real pain.
w3m-previous-anchor
).
w3m-next-form
).
w3m-previous-form
).
w3m-next-image
).
w3m-previous-image
).
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |