Following answer related to “Open Recent” in Emacs indicates that
After you press C-x C-f, press up and down to navigate the history of opened files.
I have added following lines but they do not show cycle behavior like up
, down
arrow keys
It says: beginning of history
or end of defaults no next item
(define-key minibuffer-local-map (kbd "C-n") 'next-history-element)
(define-key minibuffer-local-map (kbd "C-p") 'previous-history-element)
[Q] Instead of using up
or down
arrow keys, is it possible to use keybinding as C-n
(down) and C-p
(up) to iterate after typing C-x C-f
?