Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add autoload cookie #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

zed
Copy link

@zed zed commented Aug 10, 2024

It fixes:
#1
#2

  • rename htmlz.el -> htmlz-mode.el

It fixes error on M-x htmlz-mode:

apply: Cannot open load file: No such file or directory, htmlz-mode

with the following config in .emacs (Emacs 29+):

(use-package htmlz-mode
  :vc (:url "https://github.com/0xekez/htmlz-mode")
  ;; M-x htmlz-mode in html buffer to enable the minor-mode
  :commands htmlz-mode)

It works with:

;; ** htmlz-mode -- simple live html preview in browser
(use-package htmlz-mode
  :vc (:url "https://github.com/zed/htmlz-mode"
       :rev "fix/loading-htmlz-mode")
  ;; M-x htmlz-mode in html buffer, to enable the minor-mode
  :commands htmlz-mode)

It fixes:
0xekez#1
0xekez#2

- rename htmlz.el -> htmlz-mode.el

It fixes error on `M-x htmlz-mode`:

   apply: Cannot open load file: No such file or directory, htmlz-mode

with the following config in .emacs (emacs 29+):

```emacs-lisp
(use-package htmlz-mode
  :vc (:url "https://github.com/0xekez/htmlz-mode")
  ;; M-x htmlz-mode in html buffer to enable the minor-mode
  :commands htmlz-mode)
```

It works with:
```emacs-lisp
;; ** htmlz-mode -- simple live html preview in browser
(use-package htmlz-mode
  :vc (:url "https://github.com/zed/htmlz-mode"
       :rev "fix/loading-htmlz-mode")
  ;; M-x htmlz-mode in html buffer, to enable the minor-mode
  :commands htmlz-mode)
```
@zed zed mentioned this pull request Aug 10, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant