add rc/grench.kak

This commit is contained in:
Alex Leferry 2 2015-11-26 15:23:02 +01:00
parent f66bbdf209
commit 5da00a0f14

17
src/rc/grench.kak Normal file
View File

@ -0,0 +1,17 @@
# http://leiningen.org/grench.html
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
def grench -docstring 'eval selection with Grench/Leiningen' %{ %sh{
if ! grench eval ''; then
echo "echo 'auto launching headless Leiningen REPL'"
( lein repl :headless ) > /dev/null 2>&1 < /dev/null &
while ! grench eval '' > /dev/null 2>&1; do continue; done
fi
}
info -anchor "%val(cursor_line).%val(cursor_column)" %sh{ grench eval "$kak_selection" }
}
hook global WinSetOption filetype=clojure %{
map buffer normal <ret> :grench<ret>
}