EnigmaCurry / emacs

My GNU Emacs configuration

This URL has Read+Write access

emacs / ryan-cua-mode.el
100644 9 lines (6 sloc) 0.283 kb
1
2
3
4
5
6
7
8
9
;CUA Mode is awesome, if for nothing else than it's super easy rectangular selections.
 
;I really don't care to emulate windows keybindings, so lets turn those off.
(setq cua-enable-cua-keys nil)
 
(cua-mode t)
;I don't want shift+arrow style marking either.
(cua-selection-mode nil)