mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-27 21:33:09 +00:00
Remove special "default" value for $fish_history
This is really of very little use and makes checking $fish_history harder because it makes two values mean the same thing. Fixes #7650
This commit is contained in:
parent
3f08fb9f9e
commit
e7abb52526
2 changed files with 1 additions and 3 deletions
|
@ -1208,7 +1208,7 @@ You can change the settings of fish by changing the values of certain variables.
|
|||
|
||||
- ``fish_history``, the current history session name. If set, all subsequent commands within an
|
||||
interactive fish session will be logged to a separate file identified by the value of the
|
||||
variable. If unset, or set to ``default``, the default session name "fish" is used. If set to an
|
||||
variable. If unset, the default session name "fish" is used. If set to an
|
||||
empty string, history is not saved to disk (but is still available within the interactive
|
||||
session).
|
||||
|
||||
|
|
|
@ -1240,8 +1240,6 @@ wcstring history_session_id(const environment_t &vars) {
|
|||
wcstring session_id = var->as_string();
|
||||
if (session_id.empty()) {
|
||||
result.clear();
|
||||
} else if (session_id == L"default") {
|
||||
// using the default value
|
||||
} else if (valid_var_name(session_id)) {
|
||||
result = session_id;
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue