diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-02-26 19:42:38 -0300 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-02-26 19:42:38 -0300 |
commit | cd72f5f03dcc3490318920ef95fc09b07ae900da (patch) | |
tree | cc2bcb61f4350dce6a5b5ecba12218f25645275f /sx.el | |
parent | f4ba0e2a11581477e412c276080a049d19351361 (diff) | |
parent | 7df79a35edcb79e7caca4a0d50fcec54d5f68fef (diff) |
Merge pull request #265 from vermiculus/question-mode-line
Question mode line
Diffstat (limited to 'sx.el')
-rw-r--r-- | sx.el | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -187,6 +187,12 @@ If ALIST doesn't have a `site' property, one is created using the ,(macroexpand `(let-alist ,alist ,@body)))) +(defun sx--pretty-site-parameter (site) + "Returned a pretty and capitalized version of string SITE." + (mapconcat #'capitalize + (split-string site "\\.") + " ")) + ;;; Utility Functions (defun sx--split-string (string &optional separators) |