From e26000be7f4cff84eed59962e9ee03d9b65bd799 Mon Sep 17 00:00:00 2001
From: nyamatongwe
Date: Wed, 6 Sep 2000 06:57:21 +0000
Subject: Removed a couple of completed items from the TODO list and added a
couple of bugs. Bug wuth not redrawing caret sometimes when performing undo
fixed.
---
doc/ScintillaHistory.html | 15 +++++++++++----
doc/ScintillaToDo.html | 9 +++------
src/Editor.cxx | 1 +
3 files changed, 15 insertions(+), 10 deletions(-)
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html
index e7be564d5..11cf57b44 100644
--- a/doc/ScintillaHistory.html
+++ b/doc/ScintillaHistory.html
@@ -154,14 +154,21 @@
Scintilla is available as a COM control from the scintillactrl module in CVS.
- Invisible style setting.
+ Style setting to underline text. Exposed in SciTE as "underlined".
- SciTE has an extensibility interface that can be used to implement featires such as
- a scripting language or remote control. An example
+ Style setting to make text invisible.
- Fixes to the perl and PHP lexers.
+ SciTE has an extensibility interface that can be used to implement features such as
+ a scripting language or remote control. An example use of this is the extlua module
+ available from CVS which allows SciTE to be scripted in Lua.
+
+
+ Fixes to the Perl, Python, and PHP lexers.
+
+
+ Comboboxes in dialogs on Windows can be horizontally scrolled.
diff --git a/doc/ScintillaToDo.html b/doc/ScintillaToDo.html
index bb8cbf663..06253179c 100644
--- a/doc/ScintillaToDo.html
+++ b/doc/ScintillaToDo.html
@@ -68,12 +68,6 @@
Different height lines based upon tallest text on the line rather than on the tallest style
possible.
-
- COM control version on Windows
-
-
- Hidden text
-
Wider or differently shaped caret
@@ -99,6 +93,9 @@
Regular expressions in find functions.
+
+ Remember tab size setting when switching between buffers.
+
Printing on GTK+.
diff --git a/src/Editor.cxx b/src/Editor.cxx
index 9b41af798..6d2676ffb 100644
--- a/src/Editor.cxx
+++ b/src/Editor.cxx
@@ -1594,6 +1594,7 @@ void Editor::SelectAll() {
void Editor::Undo() {
if (pdoc->CanUndo()) {
+ InvalidateCaret();
int newPos = pdoc->Undo();
SetEmptySelection(newPos);
EnsureCaretVisible();
--
cgit v1.2.3