# http://ponylang.org # ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ # Detection # ‾‾‾‾‾‾‾‾‾ hook global BufCreate .*[.](pony) %{ set-option buffer filetype pony } # Highlighters & Completion # ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ add-highlighter shared/ regions -default code pony \ double_string '"""' '"""' '' \ double_string '"' (?' 0:type add-highlighter shared/pony/code regex '\b(${keywords})\b' 0:keyword add-highlighter shared/pony/code regex ';' 0:keyword add-highlighter shared/pony/code regex '^\s*|' 0:keyword add-highlighter shared/pony/code regex '\b(${struct})\b' 0:variable add-highlighter shared/pony/code regex '\b(${capabilities})\b(!|^)?' 1:builtin 2:builtin " # Highlight types and attributes printf %s " add-highlighter shared/pony/code regex '@[\w_]+\b' 0:attribute " } # Commands # ‾‾‾‾‾‾‾‾ define-command -hidden pony-indent-on-new-line %{ evaluate-commands -draft -itersel %{ # preserve previous line indent try %{ execute-keys -draft K } # cleanup trailing whitespaces from previous line try %{ execute-keys -draft k s \h+$ d } # copy '//' comment prefix and following white spaces # try %{ execute-keys -draft k x s ^\h*//\h* y jgh P } # indent after line ending with : try %{ execute-keys -draft k x (do|try|then|else|:|=>)$ j } # else, end are always de-indented try %{ execute-keys -draft k x (else|end):$ k x s ^\h* y j x ^" J } } } # Initialization # ‾‾‾‾‾‾‾‾‾‾‾‾‾‾ hook -group pony-highlight global WinSetOption filetype=pony %{ add-highlighter window ref pony } hook global WinSetOption filetype=pony %{ hook window InsertChar \n -group pony-indent pony-indent-on-new-line # cleanup trailing whitespaces on current line insert end hook window ModeChange insert:.* -group pony-indent %{ try %{ execute-keys -draft \; s ^\h+$ d } } } hook -group pony-highlight global WinSetOption filetype=(?!pony).* %{ remove-highlighter pony } hook global WinSetOption filetype=(?!pony).* %{ remove-hooks window pony-indent }