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) ) ) )
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。