about summary refs log tree commit diff
path: root/configs/shared/.emacs.d/wpc/fs.el
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-01-16T11·16+0000
committerWilliam Carroll <wpcarro@gmail.com>2020-01-17T10·56+0000
commit47faf8d6f0786279899d2ffcde8dd8786cf73338 (patch)
treec0cf8f84de97c662d80d7e156d3bb06e54ed91ab /configs/shared/.emacs.d/wpc/fs.el
parentf11ae9c39407ef96fbd1f76ab2a6eafd7f505513 (diff)
Add headers to fs.el file
These are missing and as a code janitor that's just plain unacceptable.
Diffstat (limited to 'configs/shared/.emacs.d/wpc/fs.el')
-rw-r--r--configs/shared/.emacs.d/wpc/fs.el10
1 files changed, 8 insertions, 2 deletions
diff --git a/configs/shared/.emacs.d/wpc/fs.el b/configs/shared/.emacs.d/wpc/fs.el
index adc331d176..b1a79e280a 100644
--- a/configs/shared/.emacs.d/wpc/fs.el
+++ b/configs/shared/.emacs.d/wpc/fs.el
@@ -4,10 +4,17 @@
 ;;; Commentary:
 ;; Ergonomic alternatives for working with the filesystem.
 
+;;; Code:
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;; Dependencies
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+
 (require 'f)
 
-;;; Code:
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;; Library
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
 (defun fs/ensure-file (path)
   "Ensure that a file and its directories in `PATH' exist.
@@ -33,7 +40,6 @@ Should behave similarly in spirit to the Unix command, ls.
 If `FULL-PATH?' is set, return the full-path of the files."
   (-drop 2 (directory-files dir full-path?)))
 
-
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;; Tests
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;