~ruther/emacs.d

33b78ca8896d9ae15425ba751472b305a819dca6 — Rutherther 7 months ago 448ebce
feat: do not use electric space inside of vhdl literals
1 files changed, 7 insertions(+), 1 deletions(-)

M init.el
M init.el => init.el +7 -1
@@ 1326,7 1326,13 @@
  (add-to-list 'eglot-server-programs
                '(vhdl-mode . ("vhdl_ls")))
  (my/indent-variable-mode-alist-add vhdl-mode vhdl-basic-offset)
)

  (defun my/electric-space-not-in-strings (fun &rest args)
    (if (vhdl-in-string-p)
        (apply 'self-insert-command args)
      (apply fun args)))

  (advice-add 'vhdl-electric-space :around #'my/electric-space-not-in-strings))

(my-use-package vhdl-ts-mode
  :ensure (:host github :repo "Rutherther/vhdl-ts-mode")

Do not follow this link