all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* emacs-w3m configs
@ 2005-06-27  8:33 Fabian Braennstroem
  2005-06-27 20:38 ` Stefan Reichör
  0 siblings, 1 reply; 5+ messages in thread
From: Fabian Braennstroem @ 2005-06-27  8:33 UTC (permalink / raw)


Hi,

I want to configure w3m inside emacs a little bit and wonder
if anybody can provide me some sample configs, e.g. for
coloring and keyadjustments.

Greetings, Fabian

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: emacs-w3m configs
  2005-06-27  8:33 emacs-w3m configs Fabian Braennstroem
@ 2005-06-27 20:38 ` Stefan Reichör
  2005-06-28  6:23   ` Fabian Braennstroem
  0 siblings, 1 reply; 5+ messages in thread
From: Stefan Reichör @ 2005-06-27 20:38 UTC (permalink / raw)


Hi Fabian!

> Hi,
>
> I want to configure w3m inside emacs a little bit and wonder
> if anybody can provide me some sample configs, e.g. for
> coloring and keyadjustments.

Here is some stuff from my .emacs:

(setq w3m-key-binding 'info)
(setq w3m-search-default-engine "google")
(setq w3m-fill-column 100)
(setq w3m-use-cookies t)

;; Select a better coding system to display umlauts correctly
(setq w3m-coding-system 'utf-8
      w3m-file-coding-system 'utf-8
      w3m-file-name-coding-system 'utf-8
      w3m-input-coding-system 'utf-8
      w3m-output-coding-system 'utf-8
      w3m-terminal-coding-system 'utf-8)

(add-hook 'w3m-mode-hook
          '(lambda()
             (define-key w3m-mode-map [?w] 'w3m-copy-link)
             (define-key w3m-mode-map [(meta ?c)] 'w3m-print-current-url)))
;(setq w3m-async-exec nil)

(eval-after-load "w3m"
 '(progn
    (unless w3m-icon-directory
      (setq w3m-icon-directory (concat emacs-site-lisp-directory "w3m/icons")))

    ;; w3m-minor-mode-map is active when showing html articles in gnus
    ;; w3m-minor-mode-map is not active, when mm-inline-text-html-with-w3m-keymap is nil
    (define-key w3m-minor-mode-map "\C-m" 'w3m-view-url-with-external-browser)
    (define-key w3m-minor-mode-map [mouse-2] 'w3m-view-url-with-external-browser)

    (require 'w3m-search)
    (add-to-list 'w3m-search-engine-alist
                 '("emacs-wiki" "http://www.emacswiki.org/cgi-bin/wiki.pl?search=%s"))
    (add-to-list 'w3m-search-engine-alist
                 '("leo" "http://dict.leo.org/?search=%s"))

    ;; Make the previous search engine the default for the next search.
    (defadvice w3m-search (after change-default activate)
      (let ((engine (nth 1 minibuffer-history)))
        (when (assoc engine w3m-search-engine-alist)
          (setq w3m-search-default-engine engine))))))


Stefan.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: emacs-w3m configs
  2005-06-27 20:38 ` Stefan Reichör
@ 2005-06-28  6:23   ` Fabian Braennstroem
  2005-06-28 19:56     ` David Hansen
  0 siblings, 1 reply; 5+ messages in thread
From: Fabian Braennstroem @ 2005-06-28  6:23 UTC (permalink / raw)


Hi Stefan,

On 2005-06-27, Stefan Reichör <stefan@xsteve.at> wrote:
>  Hi Fabian!
> 
> > Hi,
> >
> > I want to configure w3m inside emacs a little bit and wonder
> > if anybody can provide me some sample configs, e.g. for
> > coloring and keyadjustments.
> 
>  Here is some stuff from my .emacs:

Thanks!

> 
>  (setq w3m-key-binding 'info)
>  (setq w3m-search-default-engine "google")
>  (setq w3m-fill-column 100)
>  (setq w3m-use-cookies t)
> 
>  ;; Select a better coding system to display umlauts correctly
>  (setq w3m-coding-system 'utf-8
>        w3m-file-coding-system 'utf-8
>        w3m-file-name-coding-system 'utf-8
>        w3m-input-coding-system 'utf-8
>        w3m-output-coding-system 'utf-8
>        w3m-terminal-coding-system 'utf-8)
> 
>  (add-hook 'w3m-mode-hook
>            '(lambda()
>               (define-key w3m-mode-map [?w] 'w3m-copy-link)
>               (define-key w3m-mode-map [(meta ?c)] 'w3m-print-current-url)))
>  ;(setq w3m-async-exec nil)
> 
>  (eval-after-load "w3m"
>   '(progn
>      (unless w3m-icon-directory
>        (setq w3m-icon-directory (concat emacs-site-lisp-directory "w3m/icons")))
> 
>      ;; w3m-minor-mode-map is active when showing html articles in gnus
>      ;; w3m-minor-mode-map is not active, when mm-inline-text-html-with-w3m-keymap is nil
>      (define-key w3m-minor-mode-map "\C-m" 'w3m-view-url-with-external-browser)
>      (define-key w3m-minor-mode-map [mouse-2] 'w3m-view-url-with-external-browser)
> 
>      (require 'w3m-search)
>      (add-to-list 'w3m-search-engine-alist
>                   '("emacs-wiki" "http://www.emacswiki.org/cgi-bin/wiki.pl?search=%s"))
>      (add-to-list 'w3m-search-engine-alist
>                   '("leo" "http://dict.leo.org/?search=%s"))

I probably like this feature, but I always get the default
search engine. What keystrokes do I have to press to get the
other ones?


Greetings, Fabian

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: emacs-w3m configs
  2005-06-28  6:23   ` Fabian Braennstroem
@ 2005-06-28 19:56     ` David Hansen
  2005-06-29 14:37       ` Fabian Braennstroem
  0 siblings, 1 reply; 5+ messages in thread
From: David Hansen @ 2005-06-28 19:56 UTC (permalink / raw)


On 28 Jun 2005 06:23:44 GMT Fabian Braennstroem wrote:
> On 2005-06-27, Stefan Reichör <stefan@xsteve.at> wrote:
>> 
>>      (require 'w3m-search)
>>      (add-to-list 'w3m-search-engine-alist
>>                   '("emacs-wiki" "http://www.emacswiki.org/cgi-bin/wiki.pl?search=%s"))
>>      (add-to-list 'w3m-search-engine-alist
>>                   '("leo" "http://dict.leo.org/?search=%s"))
>
> I probably like this feature, but I always get the default
> search engine. What keystrokes do I have to press to get the
> other ones?

C-u S

David

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: emacs-w3m configs
  2005-06-28 19:56     ` David Hansen
@ 2005-06-29 14:37       ` Fabian Braennstroem
  0 siblings, 0 replies; 5+ messages in thread
From: Fabian Braennstroem @ 2005-06-29 14:37 UTC (permalink / raw)


Hi David,

On 2005-06-28, David Hansen <david.hansen@gmx.net> wrote:
>  On 28 Jun 2005 06:23:44 GMT Fabian Braennstroem wrote:
> > On 2005-06-27, Stefan Reichör <stefan@xsteve.at> wrote:
> >> 
> >>      (require 'w3m-search)
> >>      (add-to-list 'w3m-search-engine-alist
> >>                   '("emacs-wiki" "http://www.emacswiki.org/cgi-bin/wiki.pl?search=%s"))
> >>      (add-to-list 'w3m-search-engine-alist
> >>                   '("leo" "http://dict.leo.org/?search=%s"))
> >
> > I probably like this feature, but I always get the default
> > search engine. What keystrokes do I have to press to get the
> > other ones?
> 
>  C-u S

Thanks! 

Greetings, Fabian

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2005-06-29 14:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-06-27  8:33 emacs-w3m configs Fabian Braennstroem
2005-06-27 20:38 ` Stefan Reichör
2005-06-28  6:23   ` Fabian Braennstroem
2005-06-28 19:56     ` David Hansen
2005-06-29 14:37       ` Fabian Braennstroem

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.