Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2026-05-19 Mats Lidell <matsl@gnu.org>

* test/hy-test-dependencies.el (fboundp): When markdown-ts-mode is defined
prefer markdown-mode. This avoids markdown-ts-mode prompting for
treesitter grammar.

2026-05-16 Bob Weiner <rsw@gnu.org>

* man/hyperbole.texi (Default Hyperbole Bindings): Update doc for {M-w} to copy
Expand Down
6 changes: 6 additions & 0 deletions test/hy-test-dependencies.el
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@

;;; Code:

;; Force markdown-mode to be selected first to avoid markdown-ts-mode
;; for now. It requires Tree-sitter grammars to be installed which
;; conflicts with our current CI setup.
(when (fboundp #'markdown-ts-mode)
(add-to-list 'auto-mode-alist '("\\.md\\'" . markdown-mode)))

(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/"))
(package-initialize)

Expand Down