mirror of
https://github.com/notepad-plus-plus/notepad-plus-plus.git
synced 2025-07-23 13:54:54 +02:00
[TUNE] Tune isWordChar() function for smart highlighting feature.
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository@179 f5eea248-9336-0410-98b8-ebc06183d4e3
This commit is contained in:
parent
4dd8870891
commit
a1b8647714
@ -706,6 +706,11 @@ private:
|
||||
case '\n':
|
||||
case '\r':
|
||||
case '.':
|
||||
case ',':
|
||||
case '?':
|
||||
case ';':
|
||||
case ':':
|
||||
case '!':
|
||||
case '(':
|
||||
case ')':
|
||||
case '[':
|
||||
@ -714,9 +719,8 @@ private:
|
||||
case '-':
|
||||
case '*':
|
||||
case '/':
|
||||
case '!':
|
||||
case '#':
|
||||
//case '@':
|
||||
case '@':
|
||||
case '^':
|
||||
case '%':
|
||||
case '$':
|
||||
|
@ -927,6 +927,7 @@ int FindReplaceDlg::processAll(ProcessOperation op, const char *txt2find, const
|
||||
|
||||
if (!isCreated() && !txt2find)
|
||||
return nbReplaced;
|
||||
|
||||
if ((op == ProcessReplaceAll) && (*_ppEditView)->getCurrentBuffer().isReadOnly())
|
||||
return nbReplaced;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user