There is no current way to accomplish this but I don't think it would
be too hard to add. I'll add it to my todo list.
--
eric
I actually changed my mind on this one. I think this is better served
as a user defined mapping since I think it highly depends on the
context as to whether a user would want the quickfix window to be
closed so the user should be hitting a differ key to indicate the
behavior they want in that situation.
You can add your own mapping like one of the examples below to a
~/.vim/ftplugin/qf.vim file (vimfiles/ftplugin/... on Windows):
" open the selected file and close quickfix on 'e' (for edit)
nnoremap <buffer> <silent> e <cr>:cclose<cr>
" always close the quickfix when picking a result
nnoremap <buffer> <silent> <cr> <cr>:cclose<cr>
--
eric
--
eric
--
You received this message because you are subscribed to the Google Groups "eclim-user" group.
To post to this group, send email to eclim...@googlegroups.com.
To unsubscribe from this group, send email to eclim-user+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/eclim-user?hl=en.