Skip to content

Instantly share code, notes, and snippets.

@mopp
Created August 26, 2014 12:20
Show Gist options
  • Save mopp/065ef1dbce439bbfed53 to your computer and use it in GitHub Desktop.
Save mopp/065ef1dbce439bbfed53 to your computer and use it in GitHub Desktop.
augroup check_listed
autocmd!
autocmd BufAdd * call s:check(expand("<abuf>"))
augroup END
function! s:check(bufnr)
echomsg 'Result of buflisted() = ' . string(buflisted(a:bufnr))
endfunction
echo 'load'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment