mac-switch-meta.el

lisp(defun mac-switch-meta nil 
  "switch meta between Option and Command"
  (interactive)
  (if (eq mac-option-modifier nil)
      (progn
    (setq mac-option-modifier 'meta)
    (setq mac-command-modifier 'hyper)
    )
    (progn 
      (setq mac-option-modifier nil)
      (setq mac-command-modifier 'meta)
      )
    )
  )
    原文作者:venmos
    原文地址: https://segmentfault.com/a/1190000003011528
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞