Fix keybindings for capitalizing commands

This commit is contained in:
Dimitri Lozeve 2020-09-11 12:48:33 +02:00
parent a7de84c472
commit ad3210470d

View file

@ -59,9 +59,9 @@
(global-set-key (kbd "M-z") #'zap-up-to-char)
;; Better than default: act on the region if active
(bind-key "M-c" 'capitalize-dwim)
(bind-key "M-l" 'downcase-dwim)
(bind-key "M-u" 'upcase-dwim)
(global-set-key (kbd "M-c") 'capitalize-dwim)
(global-set-key (kbd "M-l") 'downcase-dwim)
(global-set-key (kbd "M-u") 'upcase-dwim)
(setq-default c-basic-offset 2)
(setq c-default-style "linux")