2014-07-14 23:08:26 +02:00
|
|
|
# http://coffeescript.org
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
# Detection
|
|
|
|
# ‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
hook global BufCreate .*[.](coffee) %{
|
|
|
|
set buffer filetype coffee
|
|
|
|
}
|
|
|
|
|
|
|
|
# Highlighters
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
addhl -group / regions -default code coffee \
|
|
|
|
double_string '"""' '"""' '' \
|
|
|
|
single_string "'''" "'''" '' \
|
|
|
|
comment '###' '###' '' \
|
|
|
|
regex '///' ///[gimy]* '' \
|
|
|
|
double_string '"' (?<!\\)(\\\\)*" '' \
|
|
|
|
single_string "'" "'" '' \
|
|
|
|
regex '/' (?<!\\)(\\\\)*/[gimy]* '' \
|
|
|
|
comment '#' '$' ''
|
|
|
|
|
|
|
|
# Regular expression flags are: g → global match, i → ignore case, m → multi-lines, y → sticky
|
|
|
|
# https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp
|
|
|
|
|
|
|
|
addhl -group /coffee/double_string fill string
|
|
|
|
addhl -group /coffee/double_string regions regions interpolation \Q#{ \} \{
|
|
|
|
addhl -group /coffee/double_string/regions/interpolation fill meta
|
|
|
|
addhl -group /coffee/single_string fill string
|
|
|
|
addhl -group /coffee/regex fill meta
|
|
|
|
addhl -group /coffee/regex regions regions interpolation \Q#{ \} \{
|
|
|
|
addhl -group /coffee/regex/regions/interpolation fill meta
|
|
|
|
addhl -group /coffee/comment fill comment
|
|
|
|
|
|
|
|
# Keywords are collected at
|
|
|
|
# https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Lexical_grammar#Keywords
|
|
|
|
# http://coffeescript.org/documentation/docs/lexer.html#section-63
|
|
|
|
addhl -group /coffee/code regex [$@]\w* 0:identifier
|
2016-04-21 21:43:17 +02:00
|
|
|
addhl -group /coffee/code regex \b(Array|Boolean|Date|Function|Number|Object|RegExp|String)\b 0:type
|
|
|
|
addhl -group /coffee/code regex \b(document|false|no|null|off|on|parent|self|this|true|undefined|window|yes)\b 0:value
|
|
|
|
addhl -group /coffee/code regex \b(and|is|isnt|not|or)\b 0:operator
|
|
|
|
addhl -group /coffee/code regex \b(break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|function|if|implements|import|in|instanceof|interface|let|native|new|package|private|protected|public|return|static|super|switch|throw|try|typeof|var|void|while|with|yield)\b 0:keyword
|
2014-07-14 23:08:26 +02:00
|
|
|
|
|
|
|
# Commands
|
|
|
|
# ‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
def -hidden _coffee_filter_around_selections %{
|
2016-02-03 09:05:58 +01:00
|
|
|
eval -draft -itersel %{
|
|
|
|
exec <a-x>
|
|
|
|
# remove trailing white spaces
|
|
|
|
try %{ exec -draft s \h + $ <ret> d }
|
|
|
|
}
|
2014-07-14 23:08:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
def -hidden _coffee_indent_on_new_line %{
|
|
|
|
eval -draft -itersel %{
|
|
|
|
# preserve previous line indent
|
2016-02-03 09:27:46 +01:00
|
|
|
try %{ exec -draft K <a-&> }
|
2014-07-14 23:08:26 +02:00
|
|
|
# filter previous line
|
|
|
|
try %{ exec -draft k : _coffee_filter_around_selections <ret> }
|
|
|
|
# copy '#' comment prefix and following white spaces
|
2016-12-29 01:38:49 +01:00
|
|
|
try %{ exec -draft k x s ^ \h * \K \# \h * <ret> y gh j P }
|
2016-02-03 09:05:58 +01:00
|
|
|
# indent after start structure
|
2016-02-03 09:14:13 +01:00
|
|
|
try %{ exec -draft k x <a-k> ^ \h * (case|catch|class|else|finally|for|function|if|switch|try|while|with) \b | (=|->) $ <ret> j <a-gt> }
|
2014-07-14 23:08:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# Initialization
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2016-09-25 15:15:07 +02:00
|
|
|
hook -group coffee-highlight global WinSetOption filetype=coffee %{ addhl ref coffee }
|
2014-07-14 23:08:26 +02:00
|
|
|
|
2016-09-25 15:15:07 +02:00
|
|
|
hook global WinSetOption filetype=coffee %{
|
2014-07-14 23:08:26 +02:00
|
|
|
hook window InsertEnd .* -group coffee-hooks _coffee_filter_around_selections
|
|
|
|
hook window InsertChar \n -group coffee-indent _coffee_indent_on_new_line
|
|
|
|
}
|
|
|
|
|
2016-10-01 15:09:59 +02:00
|
|
|
hook -group coffee-highlight global WinSetOption filetype=(?!coffee).* %{ rmhl coffee }
|
2016-09-28 08:45:01 +02:00
|
|
|
|
2014-07-14 23:08:26 +02:00
|
|
|
hook global WinSetOption filetype=(?!coffee).* %{
|
|
|
|
rmhooks window coffee-indent
|
|
|
|
rmhooks window coffee-hooks
|
|
|
|
}
|