Skip to content

Instantly share code, notes, and snippets.

@wl2776
Created November 16, 2018 02:15
Show Gist options
  • Save wl2776/ac762c513ed1234830c85c7b23ddfc04 to your computer and use it in GitHub Desktop.
Save wl2776/ac762c513ed1234830c85c7b23ddfc04 to your computer and use it in GitHub Desktop.
Cython in vim
compiler msbuild
" plus msvc
let &efm .= ', %f(%l) : %t%*\D%n: %m,%*[^"]%f"%*\D%l: %m,%f(%l) : %m,%*[^ ] %f %l: %m,%f:%l:%c:%m,%f(%l):%m,%f|%l| %m'
" plus CMake
let &efm .= ', %#%f:%l %#(%m)'
let &efm .= ',%E' . 'CMake Error at %f:%l (message):' " Start of multi-line error
let &efm .= ',%Z' . 'Call Stack (most recent call first):' " End of multi-line error
let &efm .= ',%C' . ' %m' " Continuation is message
" plus Cython
let &efm .= ', %f:%l:%c: %m'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment