synedit: added @ to the work break characters (bug #11630)

git-svn-id: trunk@15715 -
This commit is contained in:
vincents 2008-07-09 07:04:23 +00:00
parent c1820846a9
commit 5dcea6ca0b

View File

@ -46,7 +46,7 @@ const
TSynValidStringChars = ['_', '0'..'9', 'A'..'Z', 'a'..'z'] + TSynSpecialChars;
TSynWhiteChars = [' ', #9];
TSynWordBreakChars = ['.', ',', ';', ':', '"', '''', '!', '?', '[', ']', '(',
')', '{', '}', '^', '-', '=', '+', '*', '/', '\', '|','<','>'];
')', '{', '}', '@', '^', '-', '=', '+', '*', '/', '\', '|','<','>'];
type
TSynIdentChars = set of char;