]> git.eshelyaron.com Git - emacs.git/commitdiff
Add separate keymaps for js/python/css-ts-mode
authorYuan Fu <casouri@gmail.com>
Mon, 21 Nov 2022 04:43:15 +0000 (20:43 -0800)
committerYuan Fu <casouri@gmail.com>
Mon, 21 Nov 2022 09:29:32 +0000 (01:29 -0800)
* 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.

lisp/progmodes/js.el
lisp/progmodes/python.el
lisp/textmodes/css-mode.el

index 50674a1c039c45f36a66f5de61b83ca35ede337c..6d4f7d4f84e5673b399c0741c93c01ed73f7344c 100644 (file)
@@ -665,6 +665,9 @@ This variable is like `sgml-attribute-offset'."
   :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
index d38d0292775ae947f16fec03342f132d5366726e..c9a69a924e01f5ebb04330e054909887c486135c 100644 (file)
@@ -396,6 +396,9 @@ instead."
     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
 
@@ -6597,7 +6600,7 @@ implementations: `python-mode' and `python-ts-mode'."
 (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
index 97272cb714756b7543209ef4e342e1ecc59d47b0..5d4dbe155ad57263ab08250ae5f50708dbc4e1c0 100644 (file)
@@ -1323,6 +1323,9 @@ for determining whether point is within a selector."
 
 ;;; 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)