Remove some unused packages

This commit is contained in:
2026-01-08 23:40:38 -08:00
parent c94e526057
commit af49ba89c6
2 changed files with 18 additions and 55 deletions

View File

@ -354,3 +354,21 @@
;; (add-to-list 'page-break-lines-modes 'prog-mode)
;; (add-to-list 'page-break-lines-modes 'text-mode)
;; (add-to-list 'page-break-lines-modes 'helpful-mode))
;; (use-package js-comint
;; :bind (:map js-ts-mode-map
;; ("C-x C-e" . js-send-last-sexp)
;; ("C-c C-b" . js-send-buffer)
;; ("C-c C-r" . js-send-region)
;; ("C-M-x" . my/js-send-defun))
;; :hook (js-comint-mode . my/-setup-js-comint-mode)
;; :config
;; (my/setup-c-style-newline-keys js-ts-mode-map)
;; (defun my/-setup-js-comint-mode ()
;; (setq-local comint-highlight-input nil))
;; (defun my/js-send-defun ()
;; "Send the defun under point to the inferior JavaScript process."
;; (interactive)
;; (if-let ((code (thing-at-point 'defun)))
;; (js-comint-send-string code)
;; (user-error "No defun under point"))))