I have the same issue with the guy, the link is below: http://comments.gmane.org/gmane.emacs.vim-emulation/1404
when I try to use xgtags/xcscope with evil I have the following question: xgtags/xcscope would open a new window with all search results and this window/buffer is in normal mode, but enter wouldn't work to go in to the source code file in the result list. I need to c-z to get to emacs mode to jump to the source file. Would it be possible to let evil go into emacs mode for result buffers of cscope and gtags? or what is your approach regarding to this issue?
But I didn't find any solution on Internet. Is there anyone know how to solve the issue?
Thanks! Jerry
Ehvince, thanks very much.
But enter wouldn't work to go in to the source code file in the result list.
The following is my config:
4 ;;coscope
5 (require 'xcscope)
6 (setq cscope-do-not-update-database t)
92 ;;evil
93 (add-to-list 'load-path "~/.emacs.d/site-lisp/evil")
94 (require 'evil) 95 (evil-mode 1)
96 (add-hook 'dired-mode-hook (lambda () (evil-emacs-state)))