Rename --history-max to --history-size

Considering HISTSIZE and HISTFILESIZE of bash
This commit is contained in:
Junegunn Choi 2015-06-19 01:03:25 +09:00
parent a8b2c257cd
commit 3492c8b780
2 changed files with 4 additions and 4 deletions

View File

@ -44,7 +44,7 @@ const usage = `usage: fzf [options]
--toggle-sort=KEY Key to toggle sort
--bind=KEYBINDS Custom key bindings. Refer to the man page.
--history=FILE History file
--history-max=N Maximum number of history entries (default: 1000)
--history-size=N Maximum number of history entries (default: 1000)
Scripting
-q, --query=STR Start the finder with the given query
@ -698,7 +698,7 @@ func parseOptions(opts *Options, allArgs []string) {
opts.History = nil
case "--history":
setHistory(nextString(allArgs, &i, "history file path required"))
case "--history-max":
case "--history-size":
setHistoryMax(nextInt(allArgs, &i, "history max size required"))
case "--version":
opts.Version = true
@ -731,7 +731,7 @@ func parseOptions(opts *Options, allArgs []string) {
parseKeymap(keymap, opts.Execmap, opts.ToggleSort, value)
} else if match, value := optString(arg, "--history="); match {
setHistory(value)
} else if match, value := optString(arg, "--history-max="); match {
} else if match, value := optString(arg, "--history-size="); match {
setHistoryMax(atoi(value))
} else {
errorExit("unknown option: " + arg)

View File

@ -552,7 +552,7 @@ class TestGoFZF < TestBase
# History with limited number of entries
File.unlink history_file rescue nil
opts = "--history=#{history_file} --history-max=4"
opts = "--history=#{history_file} --history-size=4"
input = %w[00 11 22 33 44].map { |e| e + $/ }
input.each do |keys|
tmux.send_keys "seq 100 | #{fzf opts}", :Enter