store
/ recall
¶
Store the current selection, to be recalled later.
Signature¶
store <NAME>
NAME
, which can then be recalled later using
recall <NAME>
For example, to use shift-5
to store the selection under the name "5", and
5
to recall it, you would use
bind shift-5 store 5
bind 5 recall 5
The name can be any string (we used "5" here for simplicity). Note that stored selections are local to the current view, and are not shared across views.