Remove Emacs spam

My inconsistent git history-keeping is coming to bite me here. At the
moment, I can only speculate about what went wrong here. The gist is
this: I unintentionally committed files that were supposed to be ignored

This commit removes those files which includes:

- auto-save-list
- elpa packages
- quelpa packages
- misc
This commit is contained in:
William Carroll 2019-01-13 14:33:17 -05:00
parent 18b9930b86
commit 481df5a385
1331 changed files with 253 additions and 328472 deletions

View file

@ -27,7 +27,7 @@
(add-hook 'haskell-mode-hook #'flycheck-mode))
;; Test toggling
(defun empire/haskell/module->test ()
(defun haskell/module->test ()
"Jump from a module to a test."
(let ((filename (->> buffer-file-name
(s-replace "/src/" "/test/")
@ -36,7 +36,7 @@
(make-directory (f-dirname filename) t)
(find-file filename)))
(defun empire/haskell/test->module ()
(defun haskell/test->module ()
"Jump from a test to a module."
(let ((filename (->> buffer-file-name
(s-replace "/test/" "/src/")
@ -45,12 +45,12 @@
(make-directory (f-dirname filename) t)
(find-file filename)))
(defun empire/haskell/test<->module ()
(defun haskell/test<->module ()
"Toggle between test and module in Haskell."
(interactive)
(if (s-contains? "/src/" buffer-file-name)
(empire/haskell/module->test)
(empire/haskell/test->module)))
(haskell/module->test)
(haskell/test->module)))
(provide 'wpc-haskell)
;;; wpc-haskell.el ends here