Skip to content

Commit

Permalink
feat(tags): add initial support for call-graph
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Dec 2, 2024
1 parent 0799074 commit 730bb0a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion modules/me-tags.el
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
`("--compact"
;; TEMP: Sane defaults, see: universal-ctags/citre#184
,@(when (or (getenv "GTAGSOBJDIRPREFIX") (getenv "MAKEOBJDIRPREFIX"))
'("--objdir"))))
'("--objdir"))))
(citre-peek-fill-fringe nil) ; don't looks good with `display-line-numbers-mode'
:init
(defcustom +citre-recursive-root-project-detection-files '(".tags" ".repo" ".citre-root")
Expand Down Expand Up @@ -167,6 +167,11 @@ Fallback to the default function if none is found."
:hook (minemacs-first-c/c++-file . global-clink-mode))


;; Generate call graph for C/C++ functions
(use-package call-graph
:ensure t)


(provide 'me-tags)

;;; me-tags.el ends here

0 comments on commit 730bb0a

Please sign in to comment.