mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-27 14:23:43 -05:00
doom-cli-context-path stores the path taken to get to the current command. For example, given: (defcli! (doom boop) () ...) (defcli! (doom baz) () (call! '(boop))) (defalias! (doom bar) (doom baz)) (defalias! (doom foo) (doom bar)) (run! "doom" "foo") Then the doom-cli-context-path by 'doom boop' will be: Before this commit: ((doom baz)) After this commit: ((doom baz) (doom bar) (doom foo))