Closed zhihuiFan closed 4 years ago
Looks rtags-after-find-file-hook
is a great place to hack. it is trigged after I choose a helm candidate.
(defvar c-func-name)
(add-hook 'rtags-after-find-file-hook
(lambda() (setq c-func-name (c-defun-name))
))
then we can add it to mode-line-format
list.
After I run
rtags-find-references-at-point
, I can get some like below snapshot. I can easily navigate among the different callees. but I can't know the function name of the callee easily. do you think we can add such support? Thanks!issue https://github.com/Andersbakken/rtags/issues/1288 is about
rtags-find-references-at-point
as well.