From f404ee603285efc62c73f03b178bd367d115fcbc Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Mon, 8 Jul 2024 15:10:02 -0700 Subject: Autoload needed function --- oni-python/oni-python.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/oni-python/oni-python.el b/oni-python/oni-python.el index c88e7b4..9e8c9c2 100644 --- a/oni-python/oni-python.el +++ b/oni-python/oni-python.el @@ -76,6 +76,7 @@ for indentation." (setq-local whitespace-style '(face tabs)) (whitespace-mode)) +;;;###autoload (defun oni-python--enable-hooks (hook) (add-hook hook 'company-mode) (add-hook hook 'display-fill-column-indicator-mode) @@ -101,7 +102,7 @@ for indentation." ;;;###autoload (when (and (functionp 'treesit-available-p) (treesit-available-p) - (require 'treesit) + (require 'treesit) (treesit-ready-p 'python)) (add-to-list 'major-mode-remap-alist '(python-mode . python-ts-mode)) (oni-python--enable-hooks 'python-ts-mode-hook)) -- cgit v1.2.3-54-g00ecf