1
0
mirror of https://codeberg.org/cage/tinmop/ synced 2025-02-11 07:30:34 +01:00

- 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

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)))