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" (define-project-type! ansible-mode "ans"
:modes (yaml-mode) :modes (yaml-mode)
@ -8,5 +8,5 @@
:commands (company-ansible) :commands (company-ansible)
:init (define-company-backend! ansible-mode (ansible))) :init (define-company-backend! ansible-mode (ansible)))
(provide 'module-ansible) (provide 'extra-ansible)
;;; module-ansible.el ends here ;;; 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: ;; This library offers:
;; + impatient-mode: for broadcasting my emacs session ;; + impatient-mode: for broadcasting my emacs session
@ -26,5 +26,5 @@
(narf/load-font (if big-mode big-mode-font narf-default-font)) (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))) (setq-default line-spacing (if big-mode big-mode-line-spacing big-mode--line-spacing)))
(provide 'module-demo) (provide 'extra-demo)
;;; module-demo.el ends here ;;; extra-demo.el ends here

View file

@ -1,4 +1,4 @@
;;; module-tmux.el ;;; extra-tmux.el
;; This library offers: ;; This library offers:
;; + TODO An integration/abstraction layer to make it seem like tmux and emacs are one ;; + TODO An integration/abstraction layer to make it seem like tmux and emacs are one
@ -26,7 +26,7 @@
:ex-arg shell :ex-arg shell
(list (when (evil-ex-p) (evil-ex-file-arg)))) (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) (evil-define-command narf:tmux-cd (&optional bang)
(interactive "<!>") (interactive "<!>")
(if bang (if bang
@ -34,7 +34,7 @@
(narf/tmux-cd-to-here))) (narf/tmux-cd-to-here)))
(defvar narf-tmux-last-command nil "The last command sent to tmux") (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) (evil-define-operator narf:tmux (&optional command bang)
"Sends input to tmux. Use `bang' to append to tmux" "Sends input to tmux. Use `bang' to append to tmux"
:type inclusive :type inclusive
@ -58,5 +58,5 @@
(interactive) (interactive)
(narf/tmux-cd-to-here (narf/project-root))) (narf/tmux-cd-to-here (narf/project-root)))
(provide 'module-tmux) (provide 'extra-tmux)
;;; module-tmux.el ends here ;;; extra-tmux.el ends here