blob: b3ab659552cab40c90c4897426c83d9933a67d86 (
plain)
1
2
3
4
5
6
7
8
|
" press F5 to execute the project code
map <f5> :AsyncRun -cwd=<root> ruby run.rb<CR>
" Identify .mab files as Ruby
augroup syntax_mab_files
autocmd!
autocmd VimEnter,BufNewFile,BufRead *.mab set syntax=ruby
augroup end
|