VimBindings.jl icon indicating copy to clipboard operation
VimBindings.jl copied to clipboard

Set and seek marks for entries in REPL history

Open caleb-allen opened this issue 2 years ago • 1 comments

For example, setting a mark mA would allow a user to return to a given history entry using 'A.

One open question: Should marks be allowed to be set when browsing the history? Or should they only be able to be set when actively writing text in the repl (in other words, not browsing through REPL history)

caleb-allen avatar Jan 25 '23 16:01 caleb-allen

A possible implementation of this would be a mark dictionary (persisted with Preferences.jl) where the dictionary's key is the mark's name (the keyboard key) and the value is the date/timestamp of the history entry, which is already recorded in the history file

caleb-allen avatar Oct 22 '24 09:10 caleb-allen