# http://rust-lang.org # ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ # Detection # ‾‾‾‾‾‾‾‾‾ hook global BufCreate .*[.](rust|rs) %{ set buffer filetype rust } # Highlighters # ‾‾‾‾‾‾‾‾‾‾‾‾ add-highlighter -group / regions -default code rust \ string '"' (? s \h+$ d } } def -hidden rust-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 } # filter previous line try %{ exec -draft k : rust-filter-around-selections } # indent after lines ending with { or ( try %[ exec -draft k [{(]\h*$ j ] # align to opening paren of previous line try %{ exec -draft [( \`\([^\n]+\n[^\n]*\n?\' s \`\(\h*.|.\' & } > ~ def -hidden rust-indent-on-opening-curly-brace %[ eval -draft -itersel %_ # align indent with opening paren when { is entered on a new line after the closing paren try %[ exec -draft h ) M \`\(.*\)\h*\n\h*\{\' s \`|.\' 1 ] _ ] def -hidden rust-indent-on-closing-curly-brace %[ eval -draft -itersel %_ # align to opening curly brace when alone on a line try %[ exec -draft ^\h+\}$ h m s \`|.\' 1 ] _ ] # Initialization # ‾‾‾‾‾‾‾‾‾‾‾‾‾‾ hook -group rust-highlight global WinSetOption filetype=rust %{ add-highlighter ref rust } hook global WinSetOption filetype=rust %[ hook window InsertEnd .* -group rust-hooks rust-filter-around-selections hook window InsertChar \n -group rust-indent rust-indent-on-new-line hook window InsertChar \{ -group rust-indent rust-indent-on-opening-curly-brace hook window InsertChar \} -group rust-indent rust-indent-on-closing-curly-brace ] hook -group rust-highlight global WinSetOption filetype=(?!rust).* %{ remove-highlighter rust } hook global WinSetOption filetype=(?!rust).* %{ remove-hooks window rust-indent remove-hooks window rust-hooks }