Mercurial > hg > xemacs-beta
comparison lisp/w3/FAQ @ 138:6608ceec7cf8 r20-2b3
Import from CVS: tag r20-2b3
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:31:46 +0200 |
parents | 34a5b81f86ba |
children | 318232e2a3f0 |
comparison
equal
deleted
inserted
replaced
137:cae984061f40 | 138:6608ceec7cf8 |
---|---|
31 nil))) | 31 nil))) |
32 (add-hook 'w3-file-prepare-hook 'my-w3-file-prepare-hook) | 32 (add-hook 'w3-file-prepare-hook 'my-w3-file-prepare-hook) |
33 | 33 |
34 This will turn on stylistic warnings for any local HTML files or | 34 This will turn on stylistic warnings for any local HTML files or |
35 files loaded from the `*.some.domain.name' domain. | 35 files loaded from the `*.some.domain.name' domain. |
36 | |
37 Q: How do I make emacs scroll the window horizontally when tabbing | |
38 through links? | |
39 A: XEmacs: | |
40 (add-hook 'w3-mode-hook '(lambda () (auto-show-mode 1))) | |
41 | |
42 Emacs (if you have hscroll.el from ftp:// ?????): | |
43 (autoload 'turn-on-hscroll "hscroll" nil t) | |
44 (add-hook 'w3-mode-hook 'turn-on-hscroll) | |
36 | 45 |
37 Courtesy of greg stark <gsstark@mit.edu> | 46 Courtesy of greg stark <gsstark@mit.edu> |
38 Q: How do i get Shift-Tab to go backwards on a text terminal or XTerm? | 47 Q: How do i get Shift-Tab to go backwards on a text terminal or XTerm? |
39 aka: I hate the new text widgets, I can't go through the links with n and b | 48 aka: I hate the new text widgets, I can't go through the links with n and b |
40 I can go forward using TAB but how do i go backward on a terminal? | 49 I can go forward using TAB but how do i go backward on a terminal? |