tags:

views:

110

answers:

1

I have set my default-input-method variable to "english-dvorak":

(custom-set-variables
    '(default-input-method "english-dvorak"))

When I launch Emacs, this input method is not selected. How can I make it so that all buffers by default open in this input method?

+2  A: 
(defadvice switch-to-buffer (after activate-input-method activate)
  (activate-input-method "english-dvorak"))
link0ff
This worked perfectly.
hekevintran