diff --git a/modules/module-ansible.el b/modules/extra-ansible.el similarity index 83% rename from modules/module-ansible.el rename to modules/extra-ansible.el index 900ece574..24941249d 100644 --- a/modules/module-ansible.el +++ b/modules/extra-ansible.el @@ -1,4 +1,4 @@ -;;; module-ansible.el +;;; extra-ansible.el (define-project-type! ansible-mode "ans" :modes (yaml-mode) @@ -8,5 +8,5 @@ :commands (company-ansible) :init (define-company-backend! ansible-mode (ansible))) -(provide 'module-ansible) +(provide 'extra-ansible) ;;; module-ansible.el ends here diff --git a/modules/module-demo.el b/modules/extra-demo.el similarity index 88% rename from modules/module-demo.el rename to modules/extra-demo.el index 60d0fb814..987c918a9 100644 --- a/modules/module-demo.el +++ b/modules/extra-demo.el @@ -1,4 +1,4 @@ -;;; module-demo.el --- for collaboration and demonstrations +;;; extra-demo.el --- for collaboration and demonstrations ;; This library offers: ;; + impatient-mode: for broadcasting my emacs session @@ -26,5 +26,5 @@ (narf/load-font (if big-mode big-mode-font narf-default-font)) (setq-default line-spacing (if big-mode big-mode-line-spacing big-mode--line-spacing))) -(provide 'module-demo) -;;; module-demo.el ends here +(provide 'extra-demo) +;;; extra-demo.el ends here diff --git a/modules/module-tmux.el b/modules/extra-tmux.el similarity index 90% rename from modules/module-tmux.el rename to modules/extra-tmux.el index 99bfc5a90..7451d3abf 100644 --- a/modules/module-tmux.el +++ b/modules/extra-tmux.el @@ -1,4 +1,4 @@ -;;; module-tmux.el +;;; extra-tmux.el ;; This library offers: ;; + TODO An integration/abstraction layer to make it seem like tmux and emacs are one @@ -26,7 +26,7 @@ :ex-arg shell (list (when (evil-ex-p) (evil-ex-file-arg)))) -;;;###autoload (autoload 'narf:tmux-cd "module-tmux" nil t) +;;;###autoload (autoload 'narf:tmux-cd "extra-tmux" nil t) (evil-define-command narf:tmux-cd (&optional bang) (interactive "") (if bang @@ -34,7 +34,7 @@ (narf/tmux-cd-to-here))) (defvar narf-tmux-last-command nil "The last command sent to tmux") -;;;###autoload (autoload 'narf:tmux "module-tmux" nil t) +;;;###autoload (autoload 'narf:tmux "extra-tmux" nil t) (evil-define-operator narf:tmux (&optional command bang) "Sends input to tmux. Use `bang' to append to tmux" :type inclusive @@ -58,5 +58,5 @@ (interactive) (narf/tmux-cd-to-here (narf/project-root))) -(provide 'module-tmux) -;;; module-tmux.el ends here +(provide 'extra-tmux) +;;; extra-tmux.el ends here