Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 1.07 KB

inline-checks-for-vim.md

File metadata and controls

24 lines (15 loc) · 1.07 KB

This is a short how-to on how to integrate awc and vim to get automatic checking of your latex files in vim, as you type. This is a very hacky way, and any suggestions for a cleaner mechanism are welcome. Please send a patch or email me.

  • First, install Syntastic
  • Overwrite the default tex syntax checker with AWC. There is a tex.vim present in this repository that you can use directly.
    wget https://raw.github.com/devd/Academic-Writing-Check/master/tex.vim ~/.vim/bundle/syntastic/syntax_checkers/tex.vim 
    # Note that this will overwrite the default lacheck syntax checker.
  • Make sure that the checkwriting file is executable and exists somewhere in your $PATH

Syntastic will mark the erroneous lines with red double arrow at the left, and scrolling to that line should show the error at the bottom of the screen, with the errors marked with a double asterisk. Note that you have to save the file once to get syntastic running.

If someone knows how to make vim show the errors in color, that would be great!