vim/snippets/clojure.snippets @ 0d6656688318

Fix fish tab complete with the new --wraps thing
author Steve Losh <steve@stevelosh.com>
date Thu, 17 Sep 2015 16:49:47 +0000
parents 5a5bcdfd8b54
children (none)
# Fucking imports, how do they work?
snippet nfis
	(:use ${1:foo.core})
snippet nfi
	(:use [${1:foo.core} :only (${2:bar})])
snippet ni
	(:require [${1:foo.core}])
snippet nia
	(:require [${1:foo.core} :as ${2:bar}])
snippet niar
	(:require [${1:foo.core}])
	(:import [$1 ${2:Bar}])