minor cleanup
This commit is contained in:
parent
e96ab0829e
commit
7328e96110
|
@ -245,9 +245,7 @@ static void move_backward_word(VteTerminal *vte, select_info *select) {
|
||||||
}
|
}
|
||||||
|
|
||||||
static void move_backward_blank_word(VteTerminal *vte, select_info *select) {
|
static void move_backward_blank_word(VteTerminal *vte, select_info *select) {
|
||||||
move_backward(vte, select, [](gunichar c) {
|
move_backward(vte, select, g_unichar_isspace);
|
||||||
return g_unichar_isspace(c);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename F>
|
template<typename F>
|
||||||
|
|
Loading…
Reference in New Issue