-
I had a similar problem with very big SVG files with long values for attributes (long paths).
It appeared that Scintilla hits the limits of CGI (Windows way of drawing text) when drawing very long strings, reaching the limits of CGI coordinates (IIRC).
Since you handle HTML, you should have not such problem, ie. runs of style should be smaller.
But, IE sends the HTML file right from the cache...
2007-06-01 07:58:24 UTC in Scintilla
-
What IDE? SciTE is a plain text editor, with extension capabilities, but that's not an IDE: it has no project management, no real hyperlinking of objects to their definition, and so on.
SVN and CVS? What about Perforce, Monotone, and some others?
Neil is right, the tool menu can take care of lot of such tasks already (I checkout the current file with a keystroke).
BTW, note that FTP is more...
2007-04-27 07:43:39 UTC in Scintilla
-
http://fr.php.net/manual/en/language.types.string.php
"To specify a literal single quote, you will need to escape it with a backslash (\), like in many other languages. If a backslash needs to occur before a single quote or at the end of the string, you need to double it. Note that if you try to escape any other character, the backslash will also be printed! So usually there is no need to...
2007-02-15 09:00:07 UTC in Scintilla
-
From the SciTE documentation:
eol.auto This setting overrides the eol.mode value and chooses the end of line character sequence based on the current contents of the file when it is opened. The line ending used the most in the file is chosen.
2007-02-13 14:58:25 UTC in Scintilla
-
Forget my last comment about updating the doc!
I saw Robert's one on the mailing list, and indeed it is described at the very start of the manual... I searched 'selection', and missed 'selected'... :-P.
2007-02-09 14:31:08 UTC in Scintilla
-
OK, at first I laughed when reading this, since it is implemented since years...
Then I searched the SciTEDoc for a description of this functionality, and unless I missed something, I found only a reference to rectangular selection in the Keyboard commands section...
So maybe we could transform this request to a request for doc. improvement...
First draft, for Nuno:
You can make a...
2007-02-09 14:24:35 UTC in Scintilla
-
Additional note: there is a sample VB project showing proper use of SciLexer.dll. Check it out (in CVS, I think).
2007-01-08 09:15:12 UTC in Scintilla
-
There are already separate lists for tags and attributes (hypertext.elements and hypertext.attributes), but their management seems strange indeed... Something could probably be improved here.
Now, there is currently no distinction between self-contained elements (br, hr) and the others. Anyway, I can be wrong, but I believe that is legal XHTML.
Lot of syntax checking should be done...
2007-01-08 09:13:49 UTC in Scintilla
-
OK, I could reproduce this. It is probably more obvious with very short lines and long comment symbols, as you shown... My guess is that caret position isn't updated after removing the comment, so it points before actual start of document and Scintilla gives it some default position or interprets negative value as EOF.
2007-01-08 09:04:32 UTC in Scintilla
-
This would be contrary to usual Windows behaviour...
Frankly, the use case is very marginal. Perhaps a command to undo a selection would be more appropriate...
I wrote:
user.shortcuts=Ctrl+A|A|
in the SciTEUser.properties, and it deactivated Ctrl+A. You still have a Select All command in the Edit menu, that you can remap to some other key combination.
2006-12-20 12:50:40 UTC in Scintilla