mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-13 09:57:51 +08:00
980cf009ca
Convert all .elv files (including .d.elv files) to use this new format.
24 lines
524 B
Plaintext
24 lines
524 B
Plaintext
# ```elvish
|
|
# edit:history:binding
|
|
# ```
|
|
#
|
|
# Binding table for the history mode.
|
|
var history:binding
|
|
|
|
# Starts the history mode.
|
|
fn history:start { }
|
|
|
|
# Walks to the previous entry in history mode.
|
|
fn history:up { }
|
|
|
|
# Walks to the next entry in history mode.
|
|
fn history:down { }
|
|
|
|
# Walks to the next entry in history mode, or quit the history mode if already
|
|
# at the newest entry.
|
|
fn history:down-or-quit { }
|
|
|
|
# Import command history entries that happened after the current session
|
|
# started.
|
|
fn history:fast-forward { }
|