If there is an active search with highlighted matches and the user uses `#` or
`*` to start a new search for marked text, the old hightlights where kept but
the search uses the marked text. Now a possible previous search is stopped
before the new one is started.
}
count = (info->count > 0) ? info->count : 1;
+ /* stopp possible existing search and the search highlights before
+ * starting the new search query */
+ command_search(&((Arg){0}));
command_search(&((Arg){info->key == '*' ? count : -count, query}));
g_free(query);