Skip to content

Commit

Permalink
Use keymap-set instead of define-key in library commentary
Browse files Browse the repository at this point in the history
  • Loading branch information
tarsius committed Aug 16, 2023
1 parent 0f94380 commit 9c8fecd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions hl-todo.el
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@
;; known keywords, and to insert a keyword. If you want to use these
;; commands, then you should bind them in `hl-todo-mode-map', e.g.:
;;
;; (define-key hl-todo-mode-map (kbd "C-c p") #'hl-todo-previous)
;; (define-key hl-todo-mode-map (kbd "C-c n") #'hl-todo-next)
;; (define-key hl-todo-mode-map (kbd "C-c o") #'hl-todo-occur)
;; (define-key hl-todo-mode-map (kbd "C-c i") #'hl-todo-insert)
;; (keymap-set hl-todo-mode-map "C-c p" #'hl-todo-previous)
;; (keymap-set hl-todo-mode-map "C-c n" #'hl-todo-next)
;; (keymap-set hl-todo-mode-map "C-c o" #'hl-todo-occur)
;; (keymap-set hl-todo-mode-map "C-c i" #'hl-todo-insert)

;; See [[https://www.emacswiki.org/emacs/FixmeMode][this list]] on the Emacswiki for other packages that implement
;; the same basic features, but which might also provide additional
Expand Down

0 comments on commit 9c8fecd

Please sign in to comment.