quickfix.vim 255 B

12345678910
  1. if has("autocmd")
  2. " Open quickfix window after any grep invocation (Glog and Ggrep). {{{
  3. autocmd QuickFixCmdPost *grep* cwindow |
  4. \ setlocal nocursorline |
  5. \ let g:qfix_win = bufnr("$") |
  6. \ call MapQfPrevNext()
  7. " }}}
  8. endif