From 848de57f20bfb920774dee8d2fe24df1bdae3536 Mon Sep 17 00:00:00 2001 From: Vincent Siliakus Date: Fri, 5 May 2017 18:01:07 +0200 Subject: [PATCH] Add Elixir highlighter --- rc/extra/elixir.kak | 85 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 rc/extra/elixir.kak diff --git a/rc/extra/elixir.kak b/rc/extra/elixir.kak new file mode 100644 index 00000000..3da43265 --- /dev/null +++ b/rc/extra/elixir.kak @@ -0,0 +1,85 @@ +# http://elixir-lang.org +# ---------------------- + +# Detection +# ‾‾‾‾‾‾‾‾‾ + +hook global BufCreate .*[.](ex|exs) %{ + set buffer filetype elixir +} + +# Faces +# ----- + +face ElixirAtom yellow +face ElixirUnderscore white+d +face ElixirAttribute green+d +face ElixirSpecialKeyword blue+b +face ElixirEnv red+b +face ElixirOperator rgb:a8a8a8 +face ElixirInterpolation rgb:00d7ff + +# Highlighters +# ‾‾‾‾‾‾‾‾‾‾‾‾ + +add-highlighter -group / regions -default code elixir \ + double_string '"' (?|<-|<<|>>|=>) 0:ElixirOperator +add-highlighter -group /elixir/code regex \b(require|alias|use|import)\b 0:ElixirSpecialKeyword +add-highlighter -group /elixir/code regex \b(__MODULE__|__DIR__|__ENV__|__CALLER__)\b 0:ElixirEnv +add-highlighter -group /elixir/code regex \b(def|defp|defmacro|defmacrop|defstruct|defmodule|defimpl|defprotocol|defoverridable)\b 0:keyword +add-highlighter -group /elixir/code regex \b(fn|do|end|case|if|else|unless|var!|for|cond|quote|unquote|receive|with|raise|reraise|try|catch)\b 0:keyword +add-highlighter -group /elixir/code regex '@[\w_]+\b' 0:ElixirAttribute +add-highlighter -group /elixir/code regex '\b\d+[\d_]*\b' 0:value + +# Commands +# ‾‾‾‾‾‾‾‾ + +def -hidden elixir-filter-around-selections %{ + # remove trailing white spaces + try %{ exec -draft -itersel s \h+$ d } +} + +def -hidden elixir-indent-on-new-line %{ + eval -draft -itersel %{ + # copy -- comments prefix and following white spaces + try %{ exec -draft k s ^\h*\K--\h* y gh j P } + # preserve previous line indent + try %{ exec -draft \; K } + # indent after line ending with: + # try %{ exec -draft k x (do|else|->)$ & } + # filter previous line + try %{ exec -draft k : elixir-filter-around-selections } + # indent after lines ending with do or -> + try %{ exec -draft \\; k x ^.+(do|->)$ j } + } +} + +# Initialization +# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + +hook -group elixir-highlight global WinSetOption filetype=elixir %{ add-highlighter ref elixir } + +hook global WinSetOption filetype=elixir %{ + hook window InsertEnd .* -group elixir-hooks elixir-filter-around-selections + hook window InsertChar \n -group elixir-indent elixir-indent-on-new-line +} + +hook -group elixir-highlight global WinSetOption filetype=(?!elixir).* %{ remove-highlighter elixir } +