2017-05-05 18:01:07 +02:00
|
|
|
# http://elixir-lang.org
|
|
|
|
# ----------------------
|
|
|
|
|
|
|
|
# Detection
|
|
|
|
# ‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
hook global BufCreate .*[.](ex|exs) %{
|
2017-11-03 08:34:41 +01:00
|
|
|
set-option buffer filetype elixir
|
2017-05-05 18:01:07 +02:00
|
|
|
}
|
|
|
|
|
2020-05-03 13:54:48 +02:00
|
|
|
hook global BufCreate .*[.]html[.]l?eex %{
|
|
|
|
set-option buffer filetype eex
|
|
|
|
}
|
|
|
|
|
2019-04-10 05:54:19 +02:00
|
|
|
# Initialization
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
hook global WinSetOption filetype=elixir %{
|
2019-03-13 22:00:59 +01:00
|
|
|
require-module elixir
|
2019-04-10 05:54:19 +02:00
|
|
|
|
2022-04-30 11:22:47 +02:00
|
|
|
hook window ModeChange pop:insert:.* -group elixir-trim-indent elixir-trim-indent
|
2019-04-10 05:54:19 +02:00
|
|
|
hook window InsertChar \n -group elixir-indent elixir-indent-on-new-line
|
2021-06-05 20:59:22 +02:00
|
|
|
hook window InsertChar \n -group elixir-insert elixir-insert-on-new-line
|
2019-04-10 05:54:19 +02:00
|
|
|
|
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-hooks window elixir-.+ }
|
2019-03-13 22:00:59 +01:00
|
|
|
}
|
|
|
|
|
2019-04-10 05:54:19 +02:00
|
|
|
hook -group elixir-highlight global WinSetOption filetype=elixir %{
|
|
|
|
add-highlighter window/elixir ref elixir
|
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-highlighter window/elixir }
|
|
|
|
}
|
|
|
|
|
2020-05-03 13:54:48 +02:00
|
|
|
hook global WinSetOption filetype=eex %{
|
|
|
|
require-module eex
|
|
|
|
|
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-hooks window eex-.+ }
|
|
|
|
}
|
|
|
|
|
|
|
|
hook -group eex-highlight global WinSetOption filetype=eex %{
|
|
|
|
add-highlighter window/eex ref eex
|
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-highlighter window/eex }
|
|
|
|
}
|
|
|
|
|
|
|
|
provide-module eex %{
|
|
|
|
require-module html
|
|
|
|
require-module elixir
|
|
|
|
|
|
|
|
add-highlighter shared/eex regions
|
|
|
|
add-highlighter shared/eex/html default-region ref html
|
2020-05-03 13:54:51 +02:00
|
|
|
add-highlighter shared/eex/comment region '<%#' '%>' fill comment
|
|
|
|
add-highlighter shared/eex/quote region '<%%' '%>' ref html
|
2020-05-03 13:54:50 +02:00
|
|
|
add-highlighter shared/eex/code region '<%=?' '%>' ref elixir
|
2020-05-03 13:54:48 +02:00
|
|
|
}
|
2019-04-10 05:54:19 +02:00
|
|
|
|
2019-03-13 22:00:59 +01:00
|
|
|
provide-module elixir %[
|
2017-05-05 18:01:07 +02:00
|
|
|
|
|
|
|
# Highlighters
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2018-07-01 11:53:35 +02:00
|
|
|
add-highlighter shared/elixir regions
|
|
|
|
add-highlighter shared/elixir/code default-region group
|
2020-05-03 13:54:48 +02:00
|
|
|
add-highlighter shared/elixir/double_string region -match-capture ("""|") (?<!\\)(?:\\\\)*("""|") regions
|
|
|
|
add-highlighter shared/elixir/single_string region "'" "(?<!\\)(?:\\\\)*'" fill string
|
|
|
|
add-highlighter shared/elixir/comment region '#' '$' fill comment
|
|
|
|
|
|
|
|
add-highlighter shared/elixir/leex region -match-capture '~L("""|")' '(?<!\\)(?:\\\\)*("""|")' ref eex
|
2017-05-05 18:01:07 +02:00
|
|
|
|
2018-07-01 11:53:35 +02:00
|
|
|
add-highlighter shared/elixir/double_string/base default-region fill string
|
2018-07-02 12:59:12 +02:00
|
|
|
add-highlighter shared/elixir/double_string/interpolation region -recurse \{ \Q#{ \} fill builtin
|
2018-07-01 11:53:35 +02:00
|
|
|
|
|
|
|
add-highlighter shared/elixir/code/ regex ':[\w_]+\b' 0:type
|
|
|
|
add-highlighter shared/elixir/code/ regex '[\w_]+:' 0:type
|
|
|
|
add-highlighter shared/elixir/code/ regex '[A-Z][\w_]+\b' 0:module
|
|
|
|
add-highlighter shared/elixir/code/ regex '(:[\w_]+)(\.)' 1:module
|
|
|
|
add-highlighter shared/elixir/code/ regex '\b_\b' 0:default
|
|
|
|
add-highlighter shared/elixir/code/ regex '\b_[\w_]+\b' 0:default
|
2021-12-03 01:49:28 +01:00
|
|
|
add-highlighter shared/elixir/code/ regex '~[a-zA-Z]\(.*?[^\\]\)' 0:string
|
2018-07-01 11:53:35 +02:00
|
|
|
add-highlighter shared/elixir/code/ regex \b(true|false|nil)\b 0:value
|
|
|
|
add-highlighter shared/elixir/code/ regex (->|<-|<<|>>|=>) 0:builtin
|
|
|
|
add-highlighter shared/elixir/code/ regex \b(require|alias|use|import)\b 0:keyword
|
|
|
|
add-highlighter shared/elixir/code/ regex \b(__MODULE__|__DIR__|__ENV__|__CALLER__)\b 0:value
|
|
|
|
add-highlighter shared/elixir/code/ regex \b(def|defp|defmacro|defmacrop|defstruct|defmodule|defimpl|defprotocol|defoverridable)\b 0:keyword
|
|
|
|
add-highlighter shared/elixir/code/ regex \b(fn|do|end|when|case|if|else|unless|var!|for|cond|quote|unquote|receive|with|raise|reraise|try|catch)\b 0:keyword
|
|
|
|
add-highlighter shared/elixir/code/ regex '@[\w_]+\b' 0:attribute
|
|
|
|
add-highlighter shared/elixir/code/ regex '\b\d+[\d_]*\b' 0:value
|
2017-05-05 18:01:07 +02:00
|
|
|
|
|
|
|
# Commands
|
|
|
|
# ‾‾‾‾‾‾‾‾
|
|
|
|
|
2018-12-19 10:10:26 +01:00
|
|
|
define-command -hidden elixir-trim-indent %{
|
2017-05-05 18:01:07 +02:00
|
|
|
# remove trailing white spaces
|
2022-03-16 23:20:07 +01:00
|
|
|
try %{ execute-keys -draft -itersel x s \h+$ <ret> d }
|
2017-05-05 18:01:07 +02:00
|
|
|
}
|
|
|
|
|
2021-06-05 20:59:22 +02:00
|
|
|
define-command -hidden elixir-insert-on-new-line %[
|
|
|
|
evaluate-commands -no-hooks -draft -itersel %[
|
2021-06-05 21:05:45 +02:00
|
|
|
# copy '#' comment prefix and following white spaces
|
2022-03-16 23:20:07 +01:00
|
|
|
try %{ execute-keys -draft k x s ^\h*\K#\h* <ret> y jgi P }
|
2021-06-05 20:59:22 +02:00
|
|
|
# wisely add end structure
|
|
|
|
evaluate-commands -save-regs x %[
|
2022-03-16 23:20:07 +01:00
|
|
|
try %{ execute-keys -draft k x s ^ \h + <ret> \" x y } catch %{ reg x '' }
|
2021-06-05 20:59:22 +02:00
|
|
|
try %[
|
|
|
|
evaluate-commands -draft %[
|
|
|
|
# Check if previous line opens a block
|
2022-03-16 23:20:07 +01:00
|
|
|
execute-keys -draft kx <a-k>^<c-r>x(.+\bdo$)<ret>
|
2021-06-05 20:59:22 +02:00
|
|
|
# Check that we do not already have an end for this indent level which is first set via `elixir-indent-on-new-line` hook
|
2022-03-16 23:20:07 +01:00
|
|
|
execute-keys -draft }i J x <a-K> ^<c-r>x(end|else)[^0-9A-Za-z_!?]<ret>
|
2021-06-05 20:59:22 +02:00
|
|
|
]
|
|
|
|
execute-keys -draft o<c-r>xend<esc> # insert a new line with containing end
|
|
|
|
]
|
|
|
|
]
|
|
|
|
]
|
|
|
|
]
|
2021-04-17 10:17:01 +02:00
|
|
|
|
|
|
|
define-command -hidden elixir-indent-on-new-line %{
|
|
|
|
evaluate-commands -draft -itersel %{
|
2017-05-05 18:01:07 +02:00
|
|
|
# preserve previous line indent
|
2019-10-22 11:02:06 +02:00
|
|
|
try %{ execute-keys -draft <semicolon> K <a-&> }
|
2019-03-13 22:00:59 +01:00
|
|
|
# indent after line ending with:
|
2021-04-17 11:51:25 +02:00
|
|
|
# try %{ execute-keys -draft k x <a-k> (\bdo|\belse|->)$ <ret> & }
|
|
|
|
# filter previous line
|
2018-12-19 10:10:26 +01:00
|
|
|
try %{ execute-keys -draft k : elixir-trim-indent <ret> }
|
2017-05-05 18:01:07 +02:00
|
|
|
# indent after lines ending with do or ->
|
2020-08-12 00:30:01 +02:00
|
|
|
try %{ execute-keys -draft <semicolon> k x <a-k> ^.+(\bdo|->)$ <ret> j <a-gt> }
|
2017-05-05 18:01:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-13 22:00:59 +01:00
|
|
|
]
|