mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-13 13:39:02 +00:00
Teach case-insensitive completions about tildes. Fixes https://github.com/fish-shell/fish-shell/issues/647
This commit is contained in:
parent
993c028579
commit
b8f34cdd35
7 changed files with 134 additions and 84 deletions
|
@ -554,11 +554,7 @@ wchar_t *quote_end(const wchar_t *pos)
|
|||
wcstring wsetlocale(int category, const wchar_t *locale)
|
||||
{
|
||||
|
||||
char *lang = NULL;
|
||||
if (locale)
|
||||
{
|
||||
lang = wcs2str(locale);
|
||||
}
|
||||
char *lang = locale ? wcs2str(locale) : NULL;
|
||||
char *res = setlocale(category, lang);
|
||||
free(lang);
|
||||
|
||||
|
|
|
@ -88,7 +88,10 @@ enum
|
|||
COMPLETE_AUTO_SPACE = 1 << 3,
|
||||
|
||||
/** This completion should be inserted as-is, without escaping. */
|
||||
COMPLETE_DONT_ESCAPE = 1 << 4
|
||||
COMPLETE_DONT_ESCAPE = 1 << 4,
|
||||
|
||||
/** If you do escape, don't escape tildes */
|
||||
COMPLETE_DONT_ESCAPE_TILDES = 1 << 5
|
||||
};
|
||||
typedef int complete_flags_t;
|
||||
|
||||
|
|
171
expand.cpp
171
expand.cpp
|
@ -1463,28 +1463,13 @@ static wcstring expand_unescape_string(const wcstring &in, int escape_special)
|
|||
return tmp;
|
||||
}
|
||||
|
||||
/**
|
||||
Attempts tilde expansion of the string specified, modifying it in place.
|
||||
*/
|
||||
static void expand_home_directory(wcstring &input)
|
||||
/* Given that input[0] is HOME_DIRECTORY or tilde (ugh), return the user's name. Return the empty string if it is just a tilde. Also return by reference the index of the first character of the remaining part of the string (e.g. the subsequent slash) */
|
||||
static wcstring get_home_directory_name(const wcstring &input, size_t *out_tail_idx)
|
||||
{
|
||||
const wchar_t * const in = input.c_str();
|
||||
if (in[0] == HOME_DIRECTORY)
|
||||
{
|
||||
int tilde_error = 0;
|
||||
assert(in[0] == HOME_DIRECTORY || in[0] == L'~');
|
||||
size_t tail_idx;
|
||||
wcstring home;
|
||||
|
||||
if (in[1] == '/' || in[1] == '\0')
|
||||
{
|
||||
/* Current users home directory */
|
||||
|
||||
home = env_get_string(L"HOME");
|
||||
tail_idx = 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
/* Some other users home directory */
|
||||
const wchar_t *name_end = wcschr(in, L'/');
|
||||
if (name_end)
|
||||
{
|
||||
|
@ -1494,13 +1479,34 @@ static void expand_home_directory(wcstring &input)
|
|||
{
|
||||
tail_idx = wcslen(in);
|
||||
}
|
||||
wcstring name_str = input.substr(1, tail_idx - 1);
|
||||
std::string name_cstr = wcs2string(name_str);
|
||||
struct passwd *userinfo = getpwnam(name_cstr.c_str());
|
||||
*out_tail_idx = tail_idx;
|
||||
return input.substr(1, tail_idx - 1);
|
||||
}
|
||||
|
||||
/** Attempts tilde expansion of the string specified, modifying it in place. */
|
||||
static void expand_home_directory(wcstring &input)
|
||||
{
|
||||
if (! input.empty() && input.at(0) == HOME_DIRECTORY)
|
||||
{
|
||||
size_t tail_idx;
|
||||
wcstring username = get_home_directory_name(input, &tail_idx);
|
||||
|
||||
bool tilde_error = false;
|
||||
wcstring home;
|
||||
if (username.empty())
|
||||
{
|
||||
/* Current users home directory */
|
||||
home = env_get_string(L"HOME");
|
||||
tail_idx = 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
/* Some other users home directory */
|
||||
std::string name_cstr = wcs2string(username);
|
||||
struct passwd *userinfo = getpwnam(name_cstr.c_str());
|
||||
if (userinfo == NULL)
|
||||
{
|
||||
tilde_error = 1;
|
||||
tilde_error = true;
|
||||
input[0] = L'~';
|
||||
}
|
||||
else
|
||||
|
@ -1518,13 +1524,59 @@ static void expand_home_directory(wcstring &input)
|
|||
|
||||
void expand_tilde(wcstring &input)
|
||||
{
|
||||
if (! input.empty() && input.at(0) == L'~')
|
||||
// Avoid needless COW behavior by ensuring we use const at
|
||||
const wcstring &tmp = input;
|
||||
if (! tmp.empty() && tmp.at(0) == L'~')
|
||||
{
|
||||
input.at(0) = HOME_DIRECTORY;
|
||||
expand_home_directory(input);
|
||||
}
|
||||
}
|
||||
|
||||
static void unexpand_tildes(const wcstring &input, std::vector<completion_t> *completions)
|
||||
{
|
||||
// If input begins with tilde, then try to replace the corresponding string in each completion with the tilde
|
||||
// If it does not, there's nothing to do
|
||||
if (input.empty() || input.at(0) != L'~')
|
||||
return;
|
||||
|
||||
// We only operate on completions that replace their contents
|
||||
// If we don't have any, we're done.
|
||||
// In particular, empty vectors are common.
|
||||
bool has_candidate_completion = false;
|
||||
for (size_t i=0; i < completions->size(); i++)
|
||||
{
|
||||
if (completions->at(i).flags & COMPLETE_REPLACES_TOKEN)
|
||||
{
|
||||
has_candidate_completion = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (! has_candidate_completion)
|
||||
return;
|
||||
|
||||
size_t tail_idx;
|
||||
wcstring username_with_tilde = L"~";
|
||||
username_with_tilde.append(get_home_directory_name(input, &tail_idx));
|
||||
|
||||
// Expand username_with_tilde
|
||||
wcstring home = username_with_tilde;
|
||||
expand_tilde(home);
|
||||
|
||||
// Now for each completion that starts with home, replace it with the username_with_tilde
|
||||
for (size_t i=0; i < completions->size(); i++)
|
||||
{
|
||||
completion_t &comp = completions->at(i);
|
||||
if ((comp.flags & COMPLETE_REPLACES_TOKEN) && string_prefixes_string(home, comp.completion))
|
||||
{
|
||||
comp.completion.replace(0, home.size(), username_with_tilde);
|
||||
|
||||
// And mark that our tilde is literal, so it doesn't try to escape it
|
||||
comp.flags |= COMPLETE_DONT_ESCAPE_TILDES;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
Remove any internal separators. Also optionally convert wildcard characters to
|
||||
regular equivalents. This is done to support EXPAND_SKIP_WILDCARDS.
|
||||
|
@ -1557,18 +1609,30 @@ static void remove_internal_separator(wcstring &str, bool conv)
|
|||
int expand_string(const wcstring &input, std::vector<completion_t> &output, expand_flags_t flags)
|
||||
{
|
||||
parser_t parser(PARSER_TYPE_ERRORS_ONLY, true /* show errors */);
|
||||
std::vector<completion_t> list1, list2;
|
||||
std::vector<completion_t> *in, *out;
|
||||
|
||||
size_t i;
|
||||
int res = EXPAND_OK;
|
||||
|
||||
/* Make the empty string handling behavior explicit. It's a little weird, but expand_one depends on this. */
|
||||
if (input.empty())
|
||||
{
|
||||
/* Return OK. But only append a completion if ACCEPT_INCOMPLETE is not set. */
|
||||
if (! (flags & ACCEPT_INCOMPLETE))
|
||||
{
|
||||
output.push_back(completion_t(input));
|
||||
}
|
||||
return EXPAND_OK;
|
||||
}
|
||||
|
||||
if ((!(flags & ACCEPT_INCOMPLETE)) && expand_is_clean(input.c_str()))
|
||||
{
|
||||
output.push_back(completion_t(input));
|
||||
return EXPAND_OK;
|
||||
}
|
||||
|
||||
std::vector<completion_t> clist1, clist2;
|
||||
std::vector<completion_t> *in = &clist1, *out = &clist2;
|
||||
|
||||
if (EXPAND_SKIP_CMDSUBST & flags)
|
||||
{
|
||||
wchar_t *begin, *end;
|
||||
|
@ -1581,18 +1645,15 @@ int expand_string(const wcstring &input, std::vector<completion_t> &output, expa
|
|||
parser.error(CMDSUBST_ERROR, -1, L"Command substitutions not allowed");
|
||||
return EXPAND_ERROR;
|
||||
}
|
||||
list1.push_back(completion_t(input));
|
||||
in->push_back(completion_t(input));
|
||||
}
|
||||
else
|
||||
{
|
||||
int cmdsubst_ok = expand_cmdsubst(parser, input, list1);
|
||||
int cmdsubst_ok = expand_cmdsubst(parser, input, *in);
|
||||
if (! cmdsubst_ok)
|
||||
return EXPAND_ERROR;
|
||||
}
|
||||
|
||||
in = &list1;
|
||||
out = &list2;
|
||||
|
||||
for (i=0; i < in->size(); i++)
|
||||
{
|
||||
/*
|
||||
|
@ -1624,9 +1685,7 @@ int expand_string(const wcstring &input, std::vector<completion_t> &output, expa
|
|||
}
|
||||
|
||||
in->clear();
|
||||
|
||||
in = &list2;
|
||||
out = &list1;
|
||||
std::swap(in, out); // note: this swaps the pointers only (last output is next input)
|
||||
|
||||
for (i=0; i < in->size(); i++)
|
||||
{
|
||||
|
@ -1638,9 +1697,7 @@ int expand_string(const wcstring &input, std::vector<completion_t> &output, expa
|
|||
}
|
||||
}
|
||||
in->clear();
|
||||
|
||||
in = &list1;
|
||||
out = &list2;
|
||||
std::swap(in, out); // note: this swaps the pointers only (last output is next input)
|
||||
|
||||
for (i=0; i < in->size(); i++)
|
||||
{
|
||||
|
@ -1678,9 +1735,7 @@ int expand_string(const wcstring &input, std::vector<completion_t> &output, expa
|
|||
}
|
||||
|
||||
in->clear();
|
||||
|
||||
in = &list2;
|
||||
out = &list1;
|
||||
std::swap(in, out); // note: this swaps the pointers only (last output is next input)
|
||||
|
||||
for (i=0; i < in->size(); i++)
|
||||
{
|
||||
|
@ -1694,7 +1749,6 @@ int expand_string(const wcstring &input, std::vector<completion_t> &output, expa
|
|||
wildcard_has(next, 1))
|
||||
{
|
||||
const wchar_t *start, *rest;
|
||||
std::vector<completion_t> *list = out;
|
||||
|
||||
if (next[0] == '/')
|
||||
{
|
||||
|
@ -1707,39 +1761,28 @@ int expand_string(const wcstring &input, std::vector<completion_t> &output, expa
|
|||
rest = next;
|
||||
}
|
||||
|
||||
std::vector<completion_t> expanded;
|
||||
wc_res = wildcard_expand_string(rest, start, flags, expanded);
|
||||
if (flags & ACCEPT_INCOMPLETE)
|
||||
{
|
||||
list = &output;
|
||||
out->insert(out->end(), expanded.begin(), expanded.end());
|
||||
}
|
||||
|
||||
wc_res = wildcard_expand_string(rest, start, flags, *list);
|
||||
|
||||
if (!(flags & ACCEPT_INCOMPLETE))
|
||||
else
|
||||
{
|
||||
|
||||
switch (wc_res)
|
||||
{
|
||||
case 0:
|
||||
{
|
||||
if (!(flags & ACCEPT_INCOMPLETE))
|
||||
{
|
||||
if (res == EXPAND_OK)
|
||||
res = EXPAND_WILDCARD_NO_MATCH;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
case 1:
|
||||
{
|
||||
size_t j;
|
||||
res = EXPAND_WILDCARD_MATCH;
|
||||
sort_completions(*out);
|
||||
|
||||
for (j=0; j< out->size(); j++)
|
||||
{
|
||||
output.push_back(out->at(j));
|
||||
}
|
||||
out->clear();
|
||||
sort_completions(expanded);
|
||||
out->insert(out->end(), expanded.begin(), expanded.end());
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -1750,21 +1793,25 @@ int expand_string(const wcstring &input, std::vector<completion_t> &output, expa
|
|||
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
if (flags & ACCEPT_INCOMPLETE)
|
||||
if (! (flags & ACCEPT_INCOMPLETE))
|
||||
{
|
||||
out->push_back(completion_t(next_str));
|
||||
}
|
||||
else
|
||||
{
|
||||
output.push_back(completion_t(next));
|
||||
}
|
||||
}
|
||||
|
||||
// Hack to un-expand tildes (see #647)
|
||||
if (! (flags & EXPAND_SKIP_HOME_DIRECTORIES))
|
||||
{
|
||||
unexpand_tildes(input, out);
|
||||
}
|
||||
|
||||
// Return our output
|
||||
output.insert(output.end(), out->begin(), out->end());
|
||||
|
||||
return res;
|
||||
}
|
||||
|
||||
|
|
|
@ -810,7 +810,9 @@ bool autosuggest_suggest_special(const wcstring &str, const wcstring &working_di
|
|||
wcstring_list_t parsed_arguments;
|
||||
int parsed_last_arg_pos = -1;
|
||||
if (! autosuggest_parse_command(str, &parsed_command, &parsed_arguments, &parsed_last_arg_pos))
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
bool result = false;
|
||||
if (parsed_command == L"cd" && ! parsed_arguments.empty())
|
||||
|
|
|
@ -1005,7 +1005,9 @@ wcstring completion_apply_to_command_line(const wcstring &val_str, complete_flag
|
|||
|
||||
if (do_escape)
|
||||
{
|
||||
escaped = escape(val, ESCAPE_ALL | ESCAPE_NO_QUOTED);
|
||||
/* Respect COMPLETE_DONT_ESCAPE_TILDES */
|
||||
bool no_tilde = !! (flags & COMPLETE_DONT_ESCAPE_TILDES);
|
||||
escaped = escape(val, ESCAPE_ALL | ESCAPE_NO_QUOTED | (no_tilde ? ESCAPE_NO_TILDE : 0));
|
||||
sb.append(escaped);
|
||||
move_cursor = wcslen(escaped);
|
||||
free(escaped);
|
||||
|
@ -1034,6 +1036,7 @@ wcstring completion_apply_to_command_line(const wcstring &val_str, complete_flag
|
|||
wcstring replaced;
|
||||
if (do_escape)
|
||||
{
|
||||
/* Note that we ignore COMPLETE_DONT_ESCAPE_TILDES here. We get away with this because unexpand_tildes only operates on completions that have COMPLETE_REPLACES_TOKEN set, but we ought to respect them */
|
||||
parse_util_get_parameter_info(command_line, cursor_pos, "e, NULL, NULL);
|
||||
|
||||
/* If the token is reported as unquoted, but ends with a (unescaped) quote, and we can modify the command line, then delete the trailing quote so that we can insert within the quotes instead of after them. See https://github.com/fish-shell/fish-shell/issues/552 */
|
||||
|
|
|
@ -703,8 +703,7 @@ static int wildcard_expand_internal(const wchar_t *wc,
|
|||
expand_flags_t flags,
|
||||
std::vector<completion_t> &out,
|
||||
std::set<wcstring> &completion_set,
|
||||
std::set<file_id_t> &visited_files
|
||||
)
|
||||
std::set<file_id_t> &visited_files)
|
||||
{
|
||||
|
||||
/* Points to the end of the current wildcard segment */
|
||||
|
|
Loading…
Reference in a new issue