Clearer names for core files

This commit is contained in:
Henrik Lissner 2016-01-29 02:07:20 -05:00
parent f7d9da3e6f
commit 9f9a90d2da
6 changed files with 9 additions and 128 deletions

View file

@ -1,4 +1,4 @@
;;; core-company.el --- auto completion backend (Company-mode)
;;; core-completion.el --- auto completion backend (Company-mode)
;; see lib/company-macros.el
(use-package company
@ -45,5 +45,5 @@
(global-company-mode +1)
(company-statistics-mode +1))
(provide 'core-company)
;;; core-company.el ends here
(provide 'core-completion)
;;; core-completion.el ends here

View file

@ -1,4 +1,4 @@
;;; core-auto-insert.el --- file templates
;;; core-file-templates.el --- file templates
(use-package autoinsert
:defer t
@ -95,5 +95,5 @@
("\\.z?sh$" "__" sh-mode)
)))
(provide 'core-auto-insert)
;;; core-auto-insert.el ends here
(provide 'core-file-templates)
;;; core-file-templates.el ends here

View file

@ -1,4 +1,4 @@
;;; core-workgroups.el
;;; core-sessions.el
;; see lib/workgroup-defuns.el
;; I use workgroups to accomplish two things:
@ -87,5 +87,5 @@ lib/defuns-workgroups.el.")
(defalias 'narf:switch-to-tab-right 'wg-switch-to-workgroup-right)
(defalias 'narf:switch-to-tab-last 'wg-switch-to-previous-workgroup))
(provide 'core-workgroups)
;;; core-workgroups.el ends here
(provide 'core-sessions)
;;; core-sessions.el ends here