Rename extra modules with extra- prefix

This commit is contained in:
Henrik Lissner 2016-04-19 02:09:14 -04:00
parent d506d8690e
commit bc02143e96
3 changed files with 10 additions and 10 deletions

View file

@ -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

View file

@ -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

View file

@ -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