Add .,;| to white space characters for word capture in Rx pane

pull/2/head
David Freese 2008-12-08 04:04:20 -06:00
rodzic 5d305c9717
commit b51ef6c3f4
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -311,7 +311,7 @@ char* FTextBase::get_word(int x, int y)
start = 0;
else
start++;
if (!tbuf->findchars_forward(p, " \t\n", &end))
if (!tbuf->findchars_forward(p, " .,;|\t\n", &end))
end = tbuf->length();
return tbuf->text_range(start, end);