1
0
Fork 0

- move cursor to the end of th estring when browsing command line's history.

This commit is contained in:
cage 2021-08-14 21:48:02 +02:00
parent 16733f12ef
commit a1cf6de9da
1 changed files with 2 additions and 1 deletions

View File

@ -487,7 +487,8 @@ command line."
(when (and new-id
new-input)
(setf history-position new-id)
(setf command-line new-input)))
(setf command-line new-input)
(move-point-to-end command-window command-line)))
(insert-in-history (prompt command-line)
(db:insert-in-history prompt command-line)
(set-history-most-recent command-window prompt)))