Closed djgoku closed 1 year ago
Hi @djgoku. it is strange, because heex-ts-mode-treesit-ready-p
is not being called anymore. loading of heex-ts-mode' is automatic with
elixir-ts-mode'.
{elixir,heex}-ts-modes are now part of emacs, so if you run on emacs master you can delete the packages, but still need to (require 'elixir-ts-mode)
.
I will have a look on my side as well if there is anything strange.
You have a typo:
(use-package elixir-ts-mode)
:config (global-subword-mode t))
should be
(use-package elixir-ts-mode
:config (global-subword-mode t))
Okay, I see there is an issue. Will fix today.
@djgoku its should be fixed now
It does! Thank you!
Getting this message
File mode specification error: (void-function heex-ts-mode-treesit-ready-p) [2 times]
with the following config.Emacs version https://github.com/emacs-mirror/emacs/commit/146389f873e4e41940127c1ccb5df3f9cf357060 and the latest version of
elixir-ts-mode
andheex-ts-mode
.