Some users do not use use-package.
That's mean they have to (require 'treesit-auto) before they could call (global-treesit-auto-mode) in the configuration file.
To avoid this situation package could specify special auto load pragma. For example, like this.
Usually, it's good tone to set it for all interactive commands defined in the package.
Is there any specific technical reason not to set auto load comments?
Some users do not use
use-package.That's mean they have to
(require 'treesit-auto)before they could call(global-treesit-auto-mode)in the configuration file.To avoid this situation package could specify special auto load pragma. For example, like this.
Usually, it's good tone to set it for all interactive commands defined in the package.
Is there any specific technical reason not to set auto load comments?