]> git.eshelyaron.com Git - emacs.git/commitdiff
Add subword-mode toggle to python-mode menu
authorStefan Kangas <stefankangas@gmail.com>
Sat, 21 Sep 2024 12:07:29 +0000 (14:07 +0200)
committerEshel Yaron <me@eshelyaron.com>
Mon, 23 Sep 2024 10:45:27 +0000 (12:45 +0200)
* lisp/progmodes/python.el (python-mode-map): Add subword-mode
toggle to menu.

(cherry picked from commit 29a760711731ce49965079e72d76b26ef3b7bcb4)

lisp/progmodes/python.el

index 76c9cbb77a754560a282229285caed68eb44bb1d..cd8befdb1d5dc1c7a8e4e743e9c56da602933133 100644 (file)
@@ -420,6 +420,11 @@ To customize the Python interpreter for interactive use, modify
          :help "Sort the import statements at the top of this buffer"]
         ["Fix imports" python-fix-imports
          :help "Add missing imports and remove unused ones from the current buffer"]
+        "-----"
+        ("Toggle..."
+         ["Subword Mode" subword-mode
+          :style toggle :selected subword-mode
+          :help "Toggle subword movement and editing mode"])
         ))
     map)
   "Keymap for `python-mode'.")