Skip to content

Commit

Permalink
Improve readability
Browse files Browse the repository at this point in the history
  • Loading branch information
tralph3 committed May 1, 2024
1 parent d16a8fc commit 56dc45b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions conner.el
Original file line number Diff line number Diff line change
Expand Up @@ -364,8 +364,7 @@ If PLIST-LIST is non-nil, search it instead."
(when (member next-char '("\"" "[" "("))
(let ((rbeg (region-beginning))
(rend (region-end)))
(goto-char rbeg)
(forward-char 1)
(goto-char (1+ rbeg))
(push-mark nil t t)
(goto-char (1- rend)))))

Expand Down Expand Up @@ -399,7 +398,7 @@ command is returned."
(insert (conner--pp-plist (or command conner--command-template)))
(goto-char (point-min))
(conner--edit-move-to-next-command)
(setq header-line-format "Submit with ‘C-c C-c’ or abort with ‘C-c C-k’. ‘<tab>‘ and ‘<backtab>‘ for navigation.")
(setq header-line-format "Submit with ‘C-c C-c’ or abort with ‘C-c C-k’. Use ‘<tab>‘ and ‘<backtab>‘ to navigate.")
(use-local-map keymap)
(recursive-edit)
(goto-char (point-min))
Expand Down

0 comments on commit 56dc45b

Please sign in to comment.