diff options
| author | 2021-12-01 13:43:21 -0800 | |
|---|---|---|
| committer | 2021-12-01 13:43:21 -0800 | |
| commit | 8af6f8d1604272a4e2d13a2981f02b6dd6e84bd6 (patch) | |
| tree | fac47da6c4145a4cddc9089ef29fae0cf168f510 /oni-ruby | |
| parent | e1aecd6f63bf518564cbc6ff9e365c2958dd5cbe (diff) | |
| download | emacs-config-8af6f8d1604272a4e2d13a2981f02b6dd6e84bd6.tar.gz emacs-config-8af6f8d1604272a4e2d13a2981f02b6dd6e84bd6.zip | |
Remove autoloads for snippet loading
Loading ‘yasnippet’ shouldn't automatically load my package configuration. If my
package configuration hasn't been loaded it shouldn't try to include my snippets.
Diffstat (limited to 'oni-ruby')
| -rw-r--r-- | oni-ruby/oni-ruby.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/oni-ruby/oni-ruby.el b/oni-ruby/oni-ruby.el index f174247..056a2a6 100644 --- a/oni-ruby/oni-ruby.el +++ b/oni-ruby/oni-ruby.el @@ -4,7 +4,7 @@ ;; Author: Tom Willemse <tom@ryuslash.org> ;; Keywords: local -;; Version: 2021.1123.003056 +;; Version: 2021.1201.134041 ;; Package-Requires: (ruby-mode oni-yasnippet) ;; This program is free software; you can redistribute it and/or modify @@ -38,7 +38,6 @@ (expand-file-name "snippets" oni-ruby-root) "The directory where ‘oni-ruby’ stores its snippets.") -;;;###autoload (defun oni-ruby-snippets-initialize () "Initialize the snippets for ‘oni-ruby’." (when (boundp 'yas-snippet-dirs) @@ -55,7 +54,6 @@ (add-hook 'ruby-mode-hook 'electric-pair-local-mode) (add-hook 'ruby-mode-hook 'oni-ruby--auto-fill-mode) -;;;###autoload (with-eval-after-load 'ruby-mode (with-eval-after-load 'yasnippet (oni-ruby-snippets-initialize))) |
