branch: elpa/typst-ts-mode commit 3cd8b3c43dad3c160e094a24d8efbf1d89316b4b Author: Meow King <mr.meowk...@anche.no> Commit: Meow King <mr.meowk...@anche.no>
feat: add more commands --- typst-ts-misc-commands.el | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/typst-ts-misc-commands.el b/typst-ts-misc-commands.el index ba2164cbef..bb2e5ec964 100644 --- a/typst-ts-misc-commands.el +++ b/typst-ts-misc-commands.el @@ -44,6 +44,18 @@ (async-shell-command (concat "pandoc -o " output-file-name " " file-name)))) +(defun typst-ts-mc-search-typst-symbol () + (interactive) + (browse-url "https://typst.app/docs/reference/symbols/sym/")) + +(defun typst-ts-mc-recognize-typst-symbol () + (interactive) + (browse-url "https://detypify.quarticcat.com/")) + +(defun typst-ts-mc-search-package () + (interactive) + (browse-url "https://typst.app/universe")) + (provide 'typst-ts-misc-commands)