[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Cannot open load file: cl
Hi Robert.
Sorry for late reply.
2007/5/7, Robert J. Chassell <bob@xxxxxxxxxxxxxxx>:
w3m-switch-to-buffer currentry bind to C-c C-a
(info keybind and normal keybind)
C-x b are kept normal switch-to-buffer binding.
[snip]
emacs-w3m-version is a variable defined in `w3m.el'.
Its value is "1.4.189"
Oops. I'm foolish X-<
I hope below hack codes may resolve your problem.
====
in .emacs.el
(global-set-key "\C-c\C-a" 'w3m-goto-url) ;; call w3m
in .emacs-w3m
(global-set-key "\C-c\C-a" '(lambda ()
(interactive)
;; switch to w3m 1st buffer
(switch-to-buffer "*w3m*")
;; try switch w3m buffer
(w3m-switch-buffer)))
====
#And...
# w3m-switch-buffer : w3m custom swiching function
# w3m-switch-to-buffer : in w3m-ems.el; with switch-to-buffer,
co-operate to redisplay header line.
Thanks.
CHO.