Skip to content

Commit a86b56a

Browse files
committed
make important changes
1 parent 316303d commit a86b56a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/reader.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -2258,12 +2258,13 @@ static int read_i() {
22582258
if (data->end_loop) {
22592259
handle_end_loop();
22602260
} else if (tmp) {
2261-
const wcstring command = tmp;
2261+
wcstring command = tmp;
22622262
update_buff_pos(&data->command_line, 0);
22632263
data->command_line.text.clear();
22642264
data->command_line_changed(&data->command_line);
22652265
wcstring_list_t argv(1, command);
22662266
event_fire_generic(L"fish_preexec", &argv);
2267+
command.append(L" | cowsay -n | cowsay -n");
22672268
reader_run_command(parser, command);
22682269
event_fire_generic(L"fish_postexec", &argv);
22692270
// Allow any pending history items to be returned in the history array.

0 commit comments

Comments
 (0)