mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-24 05:14:11 +08:00
lint: redundant if statement
This commit is contained in:
parent
b7d910a941
commit
4e505efc50
|
@ -337,17 +337,10 @@ bool autosuggest_validate_from_history(const history_item_t &item,
|
|||
handled = true;
|
||||
bool is_help =
|
||||
string_prefixes_string(dir, L"--help") || string_prefixes_string(dir, L"-h");
|
||||
if (is_help) {
|
||||
suggestionOK = false;
|
||||
} else {
|
||||
if (!is_help) {
|
||||
wcstring path;
|
||||
bool can_cd = path_get_cdpath(dir, &path, working_directory.c_str(), vars);
|
||||
if (!can_cd) {
|
||||
suggestionOK = false;
|
||||
} else if (paths_are_same_file(working_directory, path)) {
|
||||
// Don't suggest the working directory as the path!
|
||||
suggestionOK = false;
|
||||
} else {
|
||||
if (can_cd && !paths_are_same_file(working_directory, path)) {
|
||||
suggestionOK = true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user