vim/snippets/lisp.snippets @ 3d37ca22c5c5 bpollack/use-command-to-explicitly-call-ag-and-us-1442506830050
Use command to explicitly call ag, and use compound if block
| author | Benjamin Pollack <benjamin@bitquabit.com> |
|---|---|
| date | Thu, 17 Sep 2015 16:20:42 +0000 |
| parents | 662f1676bfb4 |
| children | (none) |
snippet defp (defparameter ${1} ${2})${3} snippet defv (defvar ${1} ${2})${3} snippet defun (defun ${1} (${2}) ${3}) snippet defm (defmethod ${1} (${2}) ${3}) snippet let (let ((${1} ${2})${3}) ${4}) snippet flet (flet ((${1} (${2}) ${3})${4}) ${5}) snippet labels (labels ((${1} (${2}) ${3})${4}) ${5}) snippet when (when ${1} ${2}) snippet unless (unless ${1} ${2}) snippet cond (cond (${1} ${2}) ${3}) snippet case (case ${1} (${2} ${3}) ${4})