about summary refs log tree commit diff stats
path: root/browse_slack/main.mu
Commit message (Expand)AuthorAgeFilesLines
* .Kartik K. Agaram2021-08-071-0/+83
='#n6'>6 7 8







                                                                   
syntax sync minlines=999

function! HighlightMuInArc()
  set ft=mu
  syntax keyword muHack begin | highlight link muHack CommentedCode
  syntax match muHack "[()]" | highlight link muHack CommentedCode
endfunction
autocmd BufRead,BufNewFile *.mu call HighlightMuInArc()