copy current search match to PRIMARY (bug in vte?)

This commit is contained in:
Daniel Micay 2012-05-30 05:09:18 -04:00
parent b9482f878e
commit 7e64f3207f
1 changed files with 2 additions and 0 deletions

View File

@ -30,8 +30,10 @@ static void search(VteTerminal *vte, const char *pattern, bool reverse) {
if (!reverse) {
vte_terminal_search_find_next(vte);
vte_terminal_copy_primary(vte);
} else {
vte_terminal_search_find_previous(vte);
vte_terminal_copy_primary(vte);
}
}