GNU bug report logs -
#60176
29.0.60; Fallback file variable mode if treesitter is not usable
Previous Next
Reported by: Mohammed Sadiq <sadiq <at> sadiqpk.org>
Date: Sun, 18 Dec 2022 12:08:01 UTC
Severity: normal
Tags: notabug, wontfix
Merged with 60559,
60874
Found in version 29.0.60
Done: Eli Zaretskii <eliz <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
> From: Juri Linkov <juri <at> linkov.net>
> Cc: Eli Zaretskii <eliz <at> gnu.org>, sadiq <at> sadiqpk.org, 60176 <at> debbugs.gnu.org
> Date: Mon, 09 Jan 2023 19:30:20 +0200
>
> Is it possible at least to make this forward-compatible to support
> such a predicate in future? To enable ts-modes only in some buffers
> currently requires first to enable non-ts-mode, then conditionally ts-mode:
>
> (add-hook 'find-file-hook
> (lambda ()
> (when (and (eq major-mode 'c-mode)
> ;; Unless in internal buffers:
> (not (string-prefix-p " " (buffer-name))))
> (c-ts-mode))))
>
> With a predicate in major-mode-remap-alist it would immediately
> enable the required mode:
>
> (setq major-mode-remap-alist
> '((c-mode . (lambda () (not (string-prefix-p " " (buffer-name))))
> c-ts-mode)))
Why do we need such hoops to jump through? I think we should simply
add
(add-to-list 'auto-mode-alist
'("\\.[ch]\\'" . c-ts-mode))
to c-ts-mode.el (and similarly for C++), and that's it.
This bug report was last modified 2 years and 118 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.