diff options
Diffstat (limited to 'configs/shared/.emacs.d/wpc/string.el')
-rw-r--r-- | configs/shared/.emacs.d/wpc/string.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configs/shared/.emacs.d/wpc/string.el b/configs/shared/.emacs.d/wpc/string.el index 9ffe84572af5..1b766f5207a3 100644 --- a/configs/shared/.emacs.d/wpc/string.el +++ b/configs/shared/.emacs.d/wpc/string.el @@ -22,11 +22,14 @@ (defconst string/test? t "When t, run the tests.") -;; Strings (defun string/hookify (x) "Append \"-hook\" to X." (s-append "-hook" x)) +(defun string/split (y x) + "Map string X into a list of strings that were separated by Y." + (s-split y x)) + (defun string/ensure-hookified (x) "Ensure that X has \"-hook\" appended to it." (if (s-ends-with? "-hook" x) |