Alexander-Miller

Results 286 comments of Alexander-Miller

We just pushed a new version of the modeline change. Let me know if it works for you.

I pushed a possible fix, try again now. > [Treemacs] The treemacs-extensions module is obsolete, treemacs-treelib should be used instead. That change was made months ago and as far as...

> Why are both treemacs-extensions and treemacs-treelib available? What are the differences? The former is my first attempt to create an extensions api. The latter is a re-write based on...

> I am wanting to make a make a extension that creates some kind shortcuts to special files outside of the project that I am editing. Sounds like you want...

> Where do you think theese files should be placed? For a reasonable standard look at what https://github.com/emacscollective/no-littering is doing. Anyway, I've now added the `:visit-action` argument for extensions. @yyoncho...

I think the original question has been answered now, so I'll close here to avoid long-running tickets.

Eval this code. ``` (defun treemacs--imenu-tag-noselect (file tag-path) (let ((tag (-last-item tag-path)) (path (-butlast tag-path))) (progn (find-file-noselect file) (let ((index (treemacs--get-imenu-index file))) (dolist (path-item path) (setq index (cdr (assoc path-item...

I accidentally gave you the mouse interface version of the tag code. Here's the correct defun: ```Elisp (defun treemacs--call-imenu-and-goto-tag (tag-path &optional org?) (let* ((file (car tag-path)) (path (-butlast (cdr tag-path)))...

Still nothing suspicious. Let's produce some debug output next. Eval this and try again: ```Elisp (defun treemacs--call-imenu-and-goto-tag (tag-path &optional org?) "Call the imenu index of the tag at TAG-PATH and...

Are both the original file and the symlink together in the same workspace? If yes then that could be the cause of the problem. Long story short treemacs treats a...