a make style-all cleanup

This commit is contained in:
Kurtis Rader 2017-07-18 22:40:25 -07:00
parent 5e2c14e7be
commit 0dc92fbb2d
5 changed files with 14 additions and 16 deletions

View file

@ -1,5 +1,5 @@
function __fish_complete_user_at_hosts -d "Print list host-names with user@" function __fish_complete_user_at_hosts -d "Print list host-names with user@"
for user_at in (commandline -ct | string match -r '.*@'; or echo "")(__fish_print_hostnames) for user_at in (commandline -ct | string match -r '.*@'; or echo "")(__fish_print_hostnames)
echo $user_at echo $user_at
end end
end end

View file

@ -265,7 +265,7 @@ function __fish_config_interactive -d "Initializations that should be performed
if test "$VTE_VERSION" -ge 3405 -o "$TERM_PROGRAM" = "Apple_Terminal" -o "$TERM_PROGRAM" = "iTerm.app" if test "$VTE_VERSION" -ge 3405 -o "$TERM_PROGRAM" = "Apple_Terminal" -o "$TERM_PROGRAM" = "iTerm.app"
function __update_cwd_osc --on-variable PWD --description 'Notify capable terminals when $PWD changes' function __update_cwd_osc --on-variable PWD --description 'Notify capable terminals when $PWD changes'
if status --is-command-substitution if status --is-command-substitution
or set -q INSIDE_EMACS or set -q INSIDE_EMACS
return return
end end
printf \e\]7\;file://\%s\%s\a (hostname) (string escape --style=url $PWD) printf \e\]7\;file://\%s\%s\a (hostname) (string escape --style=url $PWD)

View file

@ -46,7 +46,8 @@ function cdh --description "Menu based cd command"
for i in (seq $dirc -1 1) for i in (seq $dirc -1 1)
set -l dir $uniq_dirs[$i] set -l dir $uniq_dirs[$i]
set -l label_color normal set -l label_color normal
set -q fish_color_cwd; and set label_color $fish_color_cwd set -q fish_color_cwd
and set label_color $fish_color_cwd
set -l dir_color_reset (set_color normal) set -l dir_color_reset (set_color normal)
set -l dir_color set -l dir_color
if test "$dir" = "$PWD" if test "$dir" = "$PWD"
@ -57,8 +58,7 @@ function cdh --description "Menu based cd command"
if set -q home_dir[2] if set -q home_dir[2]
set dir "~$home_dir[2]" set dir "~$home_dir[2]"
end end
printf '%s %s %2d) %s %s%s%s\n' (set_color $label_color) $letters[$i] \ printf '%s %s %2d) %s %s%s%s\n' (set_color $label_color) $letters[$i] $i (set_color normal) $dir_color $dir $dir_color_reset
$i (set_color normal) $dir_color $dir $dir_color_reset
end end
# Ask the user which directory from their history they want to cd to. # Ask the user which directory from their history they want to cd to.

View file

@ -148,10 +148,10 @@ static int parse_exclusive_args(argparse_cmd_opts_t &opts, io_streams_t &streams
// This is an advanced technique that leverages the C++ STL to split the string on commas. // This is an advanced technique that leverages the C++ STL to split the string on commas.
std::wistringstream iss(raw_xflags); std::wistringstream iss(raw_xflags);
wcstring_list_t xflags((std::istream_iterator<WordDelimitedByComma, wchar_t>(iss)), wcstring_list_t xflags((std::istream_iterator<WordDelimitedByComma, wchar_t>(iss)),
std::istream_iterator<WordDelimitedByComma, wchar_t>()); std::istream_iterator<WordDelimitedByComma, wchar_t>());
if (xflags.size() < 2) { if (xflags.size() < 2) {
streams.err.append_format(_(L"%ls: exclusive flag string '%ls' is not valid\n"), streams.err.append_format(_(L"%ls: exclusive flag string '%ls' is not valid\n"),
opts.name.c_str(), raw_xflags.c_str()); opts.name.c_str(), raw_xflags.c_str());
return STATUS_CMD_ERROR; return STATUS_CMD_ERROR;
} }
@ -167,7 +167,7 @@ static int parse_exclusive_args(argparse_cmd_opts_t &opts, io_streams_t &streams
exclusive_set.push_back(x->second); exclusive_set.push_back(x->second);
} else { } else {
streams.err.append_format(_(L"%ls: exclusive flag '%ls' is not valid\n"), streams.err.append_format(_(L"%ls: exclusive flag '%ls' is not valid\n"),
opts.name.c_str(), flag.c_str()); opts.name.c_str(), flag.c_str());
return STATUS_CMD_ERROR; return STATUS_CMD_ERROR;
} }
} }
@ -235,8 +235,8 @@ static bool parse_option_spec_sep(argparse_cmd_opts_t &opts, option_spec_t *opt_
if (*(s - 1) == L'#') { if (*(s - 1) == L'#') {
if (*s != L'-') { if (*s != L'-') {
streams.err.append_format( streams.err.append_format(
_(L"%ls: Short flag '#' must be followed by '-' and a long name\n"), _(L"%ls: Short flag '#' must be followed by '-' and a long name\n"),
opts.name.c_str()); opts.name.c_str());
return false; return false;
} }
if (opts.implicit_int_flag) { if (opts.implicit_int_flag) {
@ -639,8 +639,7 @@ static void set_argparse_result_vars(argparse_cmd_opts_t &opts) {
for (size_t pos = 0; pos < long_flag.size(); pos++) { for (size_t pos = 0; pos < long_flag.size(); pos++) {
if (!iswalnum(long_flag[pos])) long_flag[pos] = L'_'; if (!iswalnum(long_flag[pos])) long_flag[pos] = L'_';
} }
env_set(var_name_prefix + long_flag, *val == ENV_NULL ? NULL : val->c_str(), env_set(var_name_prefix + long_flag, *val == ENV_NULL ? NULL : val->c_str(), ENV_LOCAL);
ENV_LOCAL);
} }
} }

View file

@ -60,14 +60,13 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
// container to hold the options specified within the command line // container to hold the options specified within the command line
class fish_cmd_opts_t { class fish_cmd_opts_t {
public: public:
// Commands to be executed in place of interactive shell. // Commands to be executed in place of interactive shell.
std::vector<std::string> batch_cmds; std::vector<std::string> batch_cmds;
// Commands to execute after the shell's config has been read. // Commands to execute after the shell's config has been read.
std::vector<std::string> postconfig_cmds; std::vector<std::string> postconfig_cmds;
}; };
/// If we are doing profiling, the filename to output to. /// If we are doing profiling, the filename to output to.
static const char *s_profiling_output_filename = NULL; static const char *s_profiling_output_filename = NULL;