Capitalize Headings
This commit is contained in:
parent
917186ccdb
commit
6bb338ee4f
@ -474,8 +474,6 @@ imalison:named-build is a way to invoke a macro in such a way that the lambda th
|
|||||||
|
|
||||||
|
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
** Join paths together as with os.path.join in python
|
|
||||||
*** Advice Add Around Builder
|
*** Advice Add Around Builder
|
||||||
For composing functions with an apply so that they can be used with the ~:around~ keyword of advice-add
|
For composing functions with an apply so that they can be used with the ~:around~ keyword of advice-add
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
@ -488,6 +486,8 @@ For composing functions with an apply so that they can be used with the ~:around
|
|||||||
(imalison:named-build imalison:kill-new-around
|
(imalison:named-build imalison:kill-new-around
|
||||||
imalison:advice-add-around-builder kill-new)
|
imalison:advice-add-around-builder kill-new)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
** Join Paths
|
||||||
|
Works in the same way as os.path.join in python
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(defun imalison:join-paths (root &rest dirs)
|
(defun imalison:join-paths (root &rest dirs)
|
||||||
(let ((result root))
|
(let ((result root))
|
||||||
@ -502,7 +502,7 @@ For composing functions with an apply so that they can be used with the ~:around
|
|||||||
|
|
||||||
(defvar imalison:gpg-key)
|
(defvar imalison:gpg-key)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** Flatten Imenu Indexes
|
** Flatten ~imenu~ Indexes
|
||||||
I like my imenu indexes flat so I don't have to press enter multiple times to find what I'm looking for. The functions that follow allow me to get this behavior out of functions that provide a nested imenu index.
|
I like my imenu indexes flat so I don't have to press enter multiple times to find what I'm looking for. The functions that follow allow me to get this behavior out of functions that provide a nested imenu index.
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(defun imalison:imenu-prefix-flattened (index)
|
(defun imalison:imenu-prefix-flattened (index)
|
||||||
@ -535,7 +535,7 @@ By advising ~imenu--make-index-alist~ with ~imalison:flatten-imenu-index~ we mak
|
|||||||
:around 'imalison:flatten-imenu-index-with-function)
|
:around 'imalison:flatten-imenu-index-with-function)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
** Add files to org-agenda-files
|
** Add Files to ~org-agenda-files~
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(defun imalison:add-to-org-agenda-files (incoming-files)
|
(defun imalison:add-to-org-agenda-files (incoming-files)
|
||||||
(setq org-agenda-files
|
(setq org-agenda-files
|
||||||
@ -544,7 +544,7 @@ By advising ~imenu--make-index-alist~ with ~imalison:flatten-imenu-index~ we mak
|
|||||||
when (and filepath (file-exists-p (file-truename filepath)))
|
when (and filepath (file-exists-p (file-truename filepath)))
|
||||||
collect (file-truename filepath)))))
|
collect (file-truename filepath)))))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** Get file string
|
** Get String From File
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(defun imalison:get-string-from-file (file-path)
|
(defun imalison:get-string-from-file (file-path)
|
||||||
"Return file-path's file content."
|
"Return file-path's file content."
|
||||||
@ -552,7 +552,7 @@ By advising ~imenu--make-index-alist~ with ~imalison:flatten-imenu-index~ we mak
|
|||||||
(insert-file-contents file-path)
|
(insert-file-contents file-path)
|
||||||
(buffer-string)))
|
(buffer-string)))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** Get current location
|
** Get Current Location
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(defun imalison:get-lat-long ()
|
(defun imalison:get-lat-long ()
|
||||||
(condition-case _ex
|
(condition-case _ex
|
||||||
@ -744,7 +744,6 @@ This interactive functions allows the user the select a function to invoke using
|
|||||||
(interactive)
|
(interactive)
|
||||||
(apply ,function args)))
|
(apply ,function args)))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
** Custom shell command on region
|
** Custom shell command on region
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(defun imalison:copy-shell-command-on-region (start end command)
|
(defun imalison:copy-shell-command-on-region (start end command)
|
||||||
|
Loading…
Reference in New Issue
Block a user