diff options
Diffstat (limited to 'basic.el')
-rw-r--r-- | basic.el | 14 |
1 files changed, 10 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. |