1
0
Fork 0

[oni-csharp] Remove autoload cookie, load from ‘oni-core’

This commit is contained in:
Tom Willemse 2021-09-20 20:18:47 -07:00
parent 6b83cea71b
commit cfd9384374
Signed by: ryuslash
GPG key ID: 7D5C407B435025C1
2 changed files with 3 additions and 5 deletions

View file

@ -4,7 +4,7 @@
;; Author: Tom Willemse <tom@ryuslash.org> ;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local ;; Keywords: local
;; Version: 2021.0920.200535 ;; Version: 2021.0920.201840
;; Package-Requires: (oni-data-dir oni-embrace oni-hydra expand-region multiple-cursors gcmh diminish ws-butler which-key insert-char-preview dashboard mixed-pitch) ;; Package-Requires: (oni-data-dir oni-embrace oni-hydra expand-region multiple-cursors gcmh diminish ws-butler which-key insert-char-preview dashboard mixed-pitch)
;; This program is free software; you can redistribute it and/or modify ;; This program is free software; you can redistribute it and/or modify
@ -263,6 +263,7 @@ _s_: String list"
(with-eval-after-load 'compile (require 'oni-compilation)) (with-eval-after-load 'compile (require 'oni-compilation))
(with-eval-after-load 'conf-mode (require 'oni-conf)) (with-eval-after-load 'conf-mode (require 'oni-conf))
(with-eval-after-load 'counsel (require 'oni-counsel)) (with-eval-after-load 'counsel (require 'oni-counsel))
(with-eval-after-load 'csharp-mode (require 'oni-csharp))
(with-eval-after-load 'elfeed (require 'oni-elfeed)) (with-eval-after-load 'elfeed (require 'oni-elfeed))
(with-eval-after-load 'embrace (require 'oni-embrace)) (with-eval-after-load 'embrace (require 'oni-embrace))
(with-eval-after-load 'flycheck (require 'oni-flycheck)) (with-eval-after-load 'flycheck (require 'oni-flycheck))
@ -277,7 +278,6 @@ _s_: String list"
(with-eval-after-load 'smartparens (require 'oni-smartparens)) (with-eval-after-load 'smartparens (require 'oni-smartparens))
(with-eval-after-load 'vterm (require 'oni-vterm)) (with-eval-after-load 'vterm (require 'oni-vterm))
(with-eval-after-load 'yasnippet (with-eval-after-load 'yasnippet
(require 'oni-yasnippet) (require 'oni-yasnippet)
(when (and (package-installed-p 'oni-yasnippet) (when (and (package-installed-p 'oni-yasnippet)

View file

@ -4,7 +4,7 @@
;; Author: Tom Willemse <tom@ryuslash.org> ;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local ;; Keywords: local
;; Version: 2021.0920.201747 ;; Version: 2021.0920.201817
;; Package-Requires: (csharp-mode oni-company oni-flycheck oni-yasnippet oni-hydra oni-lsp oni-smartparens) ;; Package-Requires: (csharp-mode oni-company oni-flycheck oni-yasnippet oni-hydra oni-lsp oni-smartparens)
;; This program is free software; you can redistribute it and/or modify ;; This program is free software; you can redistribute it and/or modify
@ -181,7 +181,5 @@ _cs_: Solution
(with-eval-after-load 'yasnippet (with-eval-after-load 'yasnippet
(oni-csharp-snippets-initialize))) (oni-csharp-snippets-initialize)))
;;;###autoload(with-eval-after-load 'csharp-mode (require 'oni-csharp))
(provide 'oni-csharp) (provide 'oni-csharp)
;;; oni-csharp.el ends here ;;; oni-csharp.el ends here