File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change 1212* [ #459 ] ( https://github.com/clojure-emacs/clojure-mode/issues/459 ) : Add font-locking for new built-ins added in Clojure 1.9.
1313* [ #471 ] ( https://github.com/clojure-emacs/clojure-mode/issues/471 ) : Support tagged maps (new in Clojure 1.9) in paredit integration.
1414* Consider ` deps.edn ` a project root.
15+ * [ #467 ] ( https://github.com/clojure-emacs/clojure-mode/issues/467 ) : Make ` prog-mode-map ` the parent keymap for ` clojure-mode-map ` .
1516
1617### Changes
1718
Original file line number Diff line number Diff line change @@ -243,6 +243,7 @@ and tools.deps."
243243
244244(defvar clojure-mode-map
245245 (let ((map (make-sparse-keymap )))
246+ (set-keymap-parent map prog-mode-map)
246247 (define-key map (kbd " C-:" ) #'clojure-toggle-keyword-string )
247248 (define-key map (kbd " C-c SPC" ) #'clojure-align )
248249 (define-key map clojure-refactor-map-prefix 'clojure-refactor-map )
You can’t perform that action at this time.
0 commit comments