diff options
-rw-r--r-- | basic.el | 14 | ||||
-rw-r--r-- | org-conf.el | 1 | ||||
-rw-r--r-- | view-conf.el | 3 |
3 files changed, 14 insertions, 4 deletions
@@ -91,10 +91,16 @@ ;;; mac specific settings -(setq ns-right-alternate-modifier 'none - ns-pop-up-frames nil - ns-use-native-fullscreen nil - ns-use-proxy-icon nil) +(setq ns-right-alternate-modifier 'none) +(setq ns-function-modifier (list :ordinary 'hyper :function 'none :mouse 'none)) +(setq ns-pop-up-frames nil) +(setq ns-use-native-fullscreen nil) +(setq ns-use-proxy-icon nil) + +;;; bookmark + +(define-key global-map (vector ?\H-b) #'bookmark-jump) +(define-key global-map (vector ?\H-m) #'bookmark-set) ;;; where to find the C source code of Emacs. diff --git a/org-conf.el b/org-conf.el index 04eb26f..a3ce49b 100644 --- a/org-conf.el +++ b/org-conf.el @@ -32,6 +32,7 @@ ;;; Keys +(define-key global-map (vector ?\H-a) #'org-agenda) (define-key global-map (vector 3 97) #'org-agenda) (define-key global-map (vector 3 99) #'org-capture) (define-key global-map (vector 3 ?l) #'org-store-link) diff --git a/view-conf.el b/view-conf.el index b58e04d..8556eff 100644 --- a/view-conf.el +++ b/view-conf.el @@ -108,6 +108,9 @@ If ARG is '(16), view the battery information." (define-key map (vector ?n) #'novel) map) "The keymap that is related to my custom functions about viewing.") +;;; Hyper key + +(define-key global-map (vector ?\H-n) #'novel) ;;; About view-mode |