Deeznots

plugin/pawn.vim

Jul 27th, 2024
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 0.21 KB | Source Code | 0 0
  1. " Define a command to compile PAWN files
  2. command! PawnCompile :call pawn#compile()
  3.  
  4. " Autocommand to compile PAWN files on save
  5. augroup pawn
  6.     autocmd!
  7.     autocmd BufWritePost *.pwn :PawnCompile
  8. augroup END
  9.  
Advertisement
Add Comment
Please, Sign In to add comment