* lisp/progmodes/js.el (js-ts-mode-map)
* lisp/progmodes/python.el (python-ts-mode-map)
* lisp/textmodes/css-mode.el (css-ts-mode-map): New keymap.
:doc "Keymap for `js-mode'."
"M-." #'js-find-symbol)
+(defvar js-ts-mode-map (copy-keymap js-mode-map)
+ "Keymap used in `js-ts-mode'.")
+
;;; Syntax table and parsing
(defvar js-mode-syntax-table
map)
"Keymap for `python-mode'.")
+(defvar python-ts-mode-map (copy-keymap python-mode-map)
+ "Keymap for `(copy-keymap python-mode-map)'.")
+
\f
;;; Python specialized rx
(define-derived-mode python-ts-mode python-base-mode "Python"
"Major mode for editing Python files, using tree-sitter library.
-\\{python-mode-map}"
+\\{python-ts-mode-map}"
(when (treesit-ready-p 'python)
(treesit-parser-create 'python)
(setq-local treesit-font-lock-feature-list
;;; Tree-sitter
+(defvar css-ts-mode-map (copy-keymap css-mode-map)
+ "Keymap used in `css-ts-mode'.")
+
(defvar css--treesit-indent-rules
'((css
((node-is "}") parent-bol 0)