elvish/pkg/edit/histwalk.d.elv
Qi Xiao 980cf009ca Parse comment blocks preceding var and fn declarations as doc comments.
Convert all .elv files (including .d.elv files) to use this new format.
2022-11-22 22:59:31 +00:00

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 { }