phil-s
phil-s
See also https://github.com/rvm/rvm/pull/5150 The outdated (and not working) instructions are still on both https://rvm.io/rvm/install and https://rvm.io/rvm/security
It's highly probable that https://archive.casouri.cat/note/2021/emacs-tree-sitter/ will be part of Emacs 29. I suggest testing with that, and offering feedback if you're able. See also https://www.reddit.com/r/emacs/comments/pxpq8d/rfc_emacs_treesitter_integration/
Big thanks to everyone involved for working on this! I'm not familiar with CEDET, and I'm curious about the likely capabilities of the tag-like functionality; especially with respect to name-spaced...
> Is there any way of turning off e.g. `php--syntax-propertize-quotes-in-comment`? Like this? ```el (advice-add 'php--syntax-propertize-quotes-in-comment :override #'ignore) ```
Something like this? ```el (add-hook 'php-mode-hook #'my-php-mode-hook) (defun my-php-mode-hook () "Custom `php-mode' behaviours. Used in `php-mode-hook'." (setq-local syntax-propertize-function nil) (remove-hook 'syntax-propertize-extend-region-functions #'php-syntax-propertize-extend-region t)) (advice-add 'php-syntax-propertize-function :override #'ignore) (setq php-phpdoc-font-lock-keywords nil)...
That's up to the maintainers, but they probably have many higher priorities. Does it work?
Perhaps you could provide your solutions up front when you post something like this, then? (a) I wouldn't have wasted any time trying to help if you'd made it clear...
I'm confused by the reply, but the correct fix for `php-mode.el` is what I've shown in my initial post, and if you want to sort it in your own config...
Using the `align` support in https://elpa.gnu.org/packages/sql-indent.html feels like a worthwhile option.
I was thinking of core, but I hadn't noticed the dependencies. They might well mean GNU ELPA is the practical place. It would certainly be nice if elisp programming tools...