tpeacock19

Results 29 comments of tpeacock19

@chmln do you plan on adding a workaround for this? I'm still experiencing this issue and it does not seem like it has gotten much attention upstream.

oh sorry i was cleaning up my notifications and thought this may have just been noise for you.

There are a couple things here: The property colums needs to have labels, and the todo query needs to have a value that will match your heading, in this case...

I'm able to reproduce with the above recipe on the master branch of Emacs 28 but it does not happen in the latest build of Emacs 27.2.50

This is more of a generic question, but how do you go about debugging `ts-fill`? I can't use `edebug` because it is defined at runtime I think.

some further observations. It seems like the ts struct is slightly different between the two versions. The `:constructor` is made into an ```elisp ;; Emacs 28.0.50 (nth 1 (cl-struct-slot-info 'ts))...

> I'd recommend using my emacs-sandbox.sh script to test each Emacs version with a clean configuration, installing ts into each one from scratch. I actually built two clean versions of...

The directory that TS has decided to place then is pretty standardized with `XDG_CACHE_HOME/tree-sitter/lib`. Having `tree-sitter-langs` place its libraries in that directory would be more consistent with user expectations. It...

I accomplish this with the following. ```elisp (defvar arx-tree-sitter-parser-dir "~/src/github/tree-sitter/") (defvar arx-tree-sitter-load-dir "~/.cache/tree-sitter/lib/") (cl-pushnew (expand-file-name arx-tree-sitter-load-dir) tree-sitter-load-path :test #'cl-equalp) (cl-pushnew '(ess-r-mode . r) tree-sitter-major-mode-language-alist) (tree-sitter-load 'r) (defmacro arx-tsc-set-highlights (fn-name files)...

Yep this works just like my workaround. I can't think of any issues with it.