emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

dvorak users (was: Emacs Survey: Toolbars)


From: andrés ramírez
Subject: dvorak users (was: Emacs Survey: Toolbars)
Date: Tue, 15 Dec 2020 18:02:59 +0000
User-agent: SEMI-EPG/1.14.7 (Harue) FLIM/1.14.9 (Gojō) APEL/10.8 EasyPG/1.0.0 Emacs/28.0.50 (armv7l-unknown-linux-gnueabihf) MULE/6.0 (HANACHIRUSATO)

Hi Christopher.

>>>>> "Christopher" == Christopher Dimech <dimech@gmx.com> writes:


[...]


    Christopher> Particularly for people not using a querty keyboard.  For 
instance, adapting
    Christopher> keybindings for use with the Dvorak Keyboard would be a 
significant improvement.

I think for dvorak users a good tip is remapping C-t to C-x
--8<---------------cut here---------------start------------->8---
(defmacro wiki/bind-dvorak-helper (key fn) 
                    `(global-set-key (kbd ,key) ,(if (listp fn) fn `',fn)))
(wiki/bind-dvorak-helper "C-t" (lookup-key global-map (kbd "C-x")))
--8<---------------cut here---------------end--------------->8---

After doing above You would need to be careful when on dired. (C-t).

Also map C-c C-m as execute-extended-command
--8<---------------cut here---------------start------------->8---
(global-set-key (kbd "C-x C-m") 'execute-extended-command)
(global-set-key (kbd "\C-c\C-m") 'execute-extended-command) ; {from effective 
emacs}
--8<---------------cut here---------------end--------------->8---


[...]

Best Regards



reply via email to

[Prev in Thread] Current Thread [Next in Thread]