From 0d52f8c052ea24dfc7dc5a53adf3fc3f916dbdee Mon Sep 17 00:00:00 2001
From: nyamatongwe
- At the end of italics style runs characters can be chopped off. An example
- is using Verdana 12 point italics for strings makes an ending double quote
- half visible and an ending single quote invisible. This is hard to solve
- completely, may be better to avoid these situations by, for example,
- choosing a font like Times New Roman for strings. There is a specific kluge
- for the end of line which adds some room for italics but this does not
+ At the end of italics style runs characters can be chopped off. An example
+ is using Verdana 12 point italics for strings makes an ending double quote
+ half visible and an ending single quote invisible. This is hard to solve
+ completely, may be better to avoid these situations by, for example,
+ choosing a font like Times New Roman for strings. There is a specific kluge
+ for the end of line which adds some room for italics but this does not
work elsewhere.
- Dragging over bold text in some fonts will ripple because of the difference in
+ Dragging over bold text in some fonts will ripple because of the difference in
size between drawing all of a string at once and drawing it in parts.
- In read-only mode the caret moves when you type or perform other actions
+ In read-only mode the caret moves when you type or perform other actions
that would insert or remove text if not in read-only mode..
@@ -52,7 +52,7 @@
GTK+ Version Bugs
- No DBCS or Unicode support.
+ No DBCS support.
Scintilla To Do
@@ -95,14 +95,14 @@
Printing of highlight lines and folding margin.
- Flow diagrams inside editor similar to + Flow diagrams inside editor similar to GRASP.
A VCL component wrapper around Scintilla so it can be used with Delphi or - Borland C++ Builder. - There is some work + Borland C++ Builder. + There is some work on this available.
@@ -110,25 +110,25 @@
More lexers for other languages such as PostScript and Smalltalk. - Make the subset Perl lexer understand more Perl. + Make the subset Perl lexer understand more Perl. Improve the Ruby and TCL lexers.
- Keyboard based rectangular selection. + Keyboard based rectangular selection. Could be modelled on Visual Studio's Ctrl+Shift+F8 command.
Automatically calculated range for horizontal scrolling.
- Commands and/or modes for treating display lines as document lines are now, - such as allowing the End key to move to the end of a display line. This can be - useful when Scintilla used to edit documentation as it is the normal convention + Commands and/or modes for treating display lines as document lines are now, + such as allowing the End key to move to the end of a display line. This can be + useful when Scintilla used to edit documentation as it is the normal convention for word processors.
- Virtual space at the end of lines so the caret can be moved beyond the end - of lines with the cursor keys. May also make rectangular operations easier + Virtual space at the end of lines so the caret can be moved beyond the end + of lines with the cursor keys. May also make rectangular operations easier to perform.
- Ctrl+Tab working like Visual C++ where it goes to the next window in + Ctrl+Tab working like Visual C++ where it goes to the next window in z-order.
@@ -169,9 +169,6 @@
User defined fold ranges.
-- Save All command. -
Silent mode that does not display any message boxes.
@@ -186,7 +183,7 @@ Automatically saving modified menu shortcuts on exit.- Mouse wheel panning (press the mouse wheel and then move the mouse) on + Mouse wheel panning (press the mouse wheel and then move the mouse) on Windows.
@@ -197,18 +194,18 @@ Directions
- The main point of this development is Scintilla, and this is where most effort will - go. SciTE will get new features, but only when they make my life easier - I am - not intending to make it grow up to be a huge full-function IDE like Visual - Cafe. The lines I've currently decided not to step over in SciTE are any sort of - project facility and any configuration dialogs. SciTE for Windows now has a - Director interface for communicating with a separate project manager + The main point of this development is Scintilla, and this is where most effort will + go. SciTE will get new features, but only when they make my life easier - I am + not intending to make it grow up to be a huge full-function IDE like Visual + Cafe. The lines I've currently decided not to step over in SciTE are any sort of + project facility and any configuration dialogs. SciTE for Windows now has a + Director interface for communicating with a separate project manager application.
- If you are interested in contributing code, do not feel any need to make it cross + If you are interested in contributing code, do not feel any need to make it cross platform. - Just code it for your platform and I'll either reimplement for the other platform or + Just code it for your platform and I'll either reimplement for the other platform or ensure that there is no effect on the other platform.