mlf176f2 pushed a commit to branch externals/ergoemacs-mode in repository elpa.
commit 2d2744a478e2a799920df5c55bb8bee7827b39b2 Author: Matthew L. Fidler <[email protected]> Date: Fri Jun 27 09:17:22 2014 -0500 Comment out autopair; needs to go in options menu... --- ergoemacs-menus.el | 26 +++++++++++++------------- 1 files changed, 13 insertions(+), 13 deletions(-) diff --git a/ergoemacs-menus.el b/ergoemacs-menus.el index 86b7e5c..66aacd5 100644 --- a/ergoemacs-menus.el +++ b/ergoemacs-menus.el @@ -662,19 +662,19 @@ All other modes are assumed to be minor modes or unimportant. (blink-cursor menu-item "Cursor Blink" blink-cursor-mode :button (:toggle . blink-cursor-mode)) - (auto-pair menu-item "Insert Matching Parentheses/Bracket" - (lambda() (interactive) - (cond - ((fboundp 'smartparens-mode) - (smartparens-mode)) - ((fboundp 'autopair-global-mode) - (autopair-global-mode)) - (t (electric-pair-mode)))) - :button (:toggle . - (or - (and (boundp 'smartparens-mode) smartparens-mode) - (and (boundp 'auto-indent-mode) auto-indent-mode) - electric-pair-mode))) + ;; (auto-pair menu-item "Insert Matching Parentheses/Bracket" + ;; (lambda() (interactive) + ;; (cond + ;; ((fboundp 'smartparens-mode) + ;; (smartparens-mode)) + ;; ((fboundp 'autopair-global-mode) + ;; (autopair-global-mode)) + ;; (t (electric-pair-mode)))) + ;; :button (:toggle . + ;; (or + ;; (and (boundp 'smartparens-mode) smartparens-mode) + ;; (and (boundp 'auto-indent-mode) auto-indent-mode) + ;; electric-pair-mode))) (tabbar-mode menu-item "Tabbar" ergoemacs-menu-tabbar-toggle :button (:toggle . (and (boundp 'tabbar-mode)
