We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 316303d commit a86b56aCopy full SHA for a86b56a
src/reader.cpp
@@ -2258,12 +2258,13 @@ static int read_i() {
2258
if (data->end_loop) {
2259
handle_end_loop();
2260
} else if (tmp) {
2261
- const wcstring command = tmp;
+ wcstring command = tmp;
2262
update_buff_pos(&data->command_line, 0);
2263
data->command_line.text.clear();
2264
data->command_line_changed(&data->command_line);
2265
wcstring_list_t argv(1, command);
2266
event_fire_generic(L"fish_preexec", &argv);
2267
+ command.append(L" | cowsay -n | cowsay -n");
2268
reader_run_command(parser, command);
2269
event_fire_generic(L"fish_postexec", &argv);
2270
// Allow any pending history items to be returned in the history array.
0 commit comments