ergoemacs/ergoemacs-mode

Not working after restart

anbasile opened this issue · 4 comments

I just reinstalled the system (arch) and started with a scratch .emacs.

I've added the basic lines for getting ergoemacs to work:

(package-initialize)
(require 'ergoemacs-mode)
(setq ergoemacs-theme nil)
(setq ergoemacs-keyboard-layout "it") 
(ergoemacs-mode 1)

It works fine, but when I restart emacs it doesn't work anymore, and I get the following lines inserted in my .emacs:

(custom-set-variables
 ;; custom-set-variables was added by Custom.
 ;; If you edit it by hand, you could mess it up, so be careful.
 ;; Your init file should contain only one such instance.
 ;; If there is more than one, they won't work right.
 '(ergoemacs-ctl-c-or-ctl-x-delay 0.2)
 '(ergoemacs-handle-ctl-c-or-ctl-x (quote both))
 '(ergoemacs-ini-mode t)
 '(ergoemacs-keyboard-layout "it")
 '(ergoemacs-mode nil)
 '(ergoemacs-smart-paste nil)
 '(ergoemacs-theme "standard")
 '(ergoemacs-theme-options (quote ((no-backspace on) (guru on))))
 '(ergoemacs-use-menus t)
 '(initial-scratch-message nil)
 '(org-CUA-compatible nil)
 '(org-special-ctrl-a/e nil)
 '(org-support-shift-select nil)
 '(scroll-error-top-bottom nil)
 '(set-mark-command-repeat-pop nil)
 '(shift-select-mode t))
(custom-set-faces
 ;; custom-set-faces was added by Custom.
 ;; If you edit it by hand, you could mess it up, so be careful.
 ;; Your init file should contain only one such instance.
 ;; If there is more than one, they won't work right.
 )

Are you using the stable or melpa version of ergoemacs-mode?

The melpa version should not save custom variables.

On Thu, Apr 14, 2016, 4:30 AM Angelo notifications@github.com wrote:

I just reinstalled the system (arch) and started with a scratch .emacs.

I've added the basic lines for getting ergoemacs to work:

(package-initialize)
(require 'ergoemacs-mode)
(setq ergoemacs-theme nil)
(setq ergoemacs-keyboard-layout "it")
(ergoemacs-mode 1)

It works fine, but when I restart emacs it doesn't work anymore, and I get
the following lines inserted in my .emacs:

(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(ergoemacs-ctl-c-or-ctl-x-delay 0.2)
'(ergoemacs-handle-ctl-c-or-ctl-x (quote both))
'(ergoemacs-ini-mode t)
'(ergoemacs-keyboard-layout "it")
'(ergoemacs-mode nil)
'(ergoemacs-smart-paste nil)
'(ergoemacs-theme "standard")
'(ergoemacs-theme-options (quote ((no-backspace on) (guru on))))
'(ergoemacs-use-menus t)
'(initial-scratch-message nil)
'(org-CUA-compatible nil)
'(org-special-ctrl-a/e nil)
'(org-support-shift-select nil)
'(scroll-error-top-bottom nil)
'(set-mark-command-repeat-pop nil)
'(shift-select-mode t))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)


You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub
#418

I have tried both

UPDATE: reinstalled and now it works.

I think this is another instance of #402. I'm unsure how to make the compiler use the correct version of ergoemacs-macros...