~edwargix/emacs.d

caa6c35e6851f2921cbdeeb70a18526009f30b77 — David Florness 7 years ago 5306a14
Reactivate rtags keybindings (function not handled by evil-collection)

This reverts commit a67b72e66f4731de0de0072d96cd378ece10924b.
1 files changed, 9 insertions(+), 0 deletions(-)

M lisp/setup-dev.el
M lisp/setup-dev.el => lisp/setup-dev.el +9 -0
@@ 105,6 105,15 @@
  (objc-mode . rtags-hook)
  :config
  (progn
    (evil-define-key '(normal motion) 'global (kbd "M-.") 'rtags-find-symbol-at-point)
    (evil-define-key '(normal motion) 'global (kbd "M-,") 'rtags-find-references-at-point)
    (evil-define-key '(normal motion) 'global (kbd "M-;") 'rtags-find-file)
    (evil-define-key '(normal motion) 'global (kbd "C-.") 'rtags-find-symbol)
    (evil-define-key '(normal motion) 'global (kbd "C-,") 'rtags-find-references)
    (evil-define-key '(normal motion) 'global (kbd "C-<") 'rtags-find-virtuals-at-point)
    (evil-define-key '(normal motion) 'global (kbd "C->") 'rtags-diagnostics)
    (evil-define-key '(normal motion) 'global (kbd "M-[") 'rtags-location-stack-back)
    (evil-define-key '(normal motion) 'global (kbd "M-]") 'rtags-location-stack-forward)
    (use-package company-rtags :ensure t)
    (use-package flycheck-rtags :ensure t)
    (use-package helm-rtags :ensure t)