about summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-04-01 16:35:49 -0500
committerCase Duckworth2021-04-01 16:35:49 -0500
commit4bcb25c2769843b066d64548a445c4f9a12a3841 (patch)
treeec3b12ac4cad4ae213a7f9dbde125936f02f6fe1 /init.el
parentSet up spelling (diff)
downloademacs-4bcb25c2769843b066d64548a445c4f9a12a3841.tar.gz
emacs-4bcb25c2769843b066d64548a445c4f9a12a3841.zip
Change etc. bindings' mapping to global-map
Diffstat (limited to 'init.el')
-rw-r--r--init.el10
1 files changed, 4 insertions, 6 deletions
diff --git a/init.el b/init.el index 72c6c81..7209c04 100644 --- a/init.el +++ b/init.el
@@ -375,12 +375,10 @@
375 (:other (getenv "USER")))) 375 (:other (getenv "USER"))))
376 376
377;;;; Etc. bindings 377;;;; Etc. bindings
378(autoload 'ehelp-command "ehelp" nil nil 'keymap) 378(global-set-key [remap just-one-space] #'cycle-spacing)
379(define-key acdw/map (kbd "C-h") 'ehelp-command) 379(global-set-key (kbd "M-/") #'hippie-expand)
380(define-key acdw/map [remap just-one-space] #'cycle-spacing) 380(global-set-key (kbd "M-=") #'count-words)
381(define-key acdw/map (kbd "M-/") #'hippie-expand) 381(global-set-key (kbd "C-x C-b") #'ibuffer)
382(define-key acdw/map (kbd "M-=") #'count-words)
383(define-key acdw/map (kbd "C-x C-b") #'ibuffer)
384 382
385;;; Packages 383;;; Packages
386 384