Change file load timing

This commit is contained in:
Shingo Fukuyama 2014-07-29 10:45:01 +09:00
parent e94567c8e6
commit 9f4502b7bc

View File

@ -717,7 +717,9 @@ for running commands with multiple cursors.")
(defvar mc/cmds-to-run-for-all nil
"Commands to run for all cursors in multiple-cursors-mode")
(load mc/list-file t) ;; load, but no errors if it does not exist yet please
(defun mc/load-list-file () (load mc/list-file t))
(add-hook 'after-init-hook 'mc/load-list-file)
(provide 'multiple-cursors-core)