Wednesday, January 22, 2014

Re: How can I close a Netrw :Explore buffer and return to the buffer I was last in?

you can try something like this

fun! ExOpen(dir)
let g:last_bufnr = bufnr('%')
exe "Explore " . a:dir
let g:netrw_browse_split=0 " open files in current window
endf

fun! ExClose()
if &filetype == "netrw"
exe ':b' . g:last_bufnr
endif
endf

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

No comments: