Some minor issues have been fixed in CVS. Empty ranges can no longer be dragged and the cursor doesn't change to an arrow over the caret when there is no selection. If a drop is empty, it's memory is handled correctly.
NUL can be entered through Shift+Ctrl+@ in Unicode mode. Offline discussion of bug 1342035 bought up the issue that Scintilla is not compliant with the specification of CF_TEXT and CF_UNICODETEXT by not normalising line ends to CR+LF when copying. Simon mentioned he had a patch for this. Is it available? http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/winui/windowsuserinterface/dataexchange/clipboard/clipboardformats.asp Scintilla has a SCI_LINEDUPLICATE command to duplicate the line containing the caret. I like this command because it doesn't touch the clipboard so I can use it easily when adding an item to a set of similar things such as when adding a name to the credits list. For more complex items such as a project on the Scintilla Related page where the item is several lines of HTML, it would be better if there were also a SCI_SELECTIONDUPLICATE which would duplicate the selection if the selection is non-empty. If the selection is empty then it would behave like SCI_LINEDUPLICATE. The default key bindings would change Ctrl+D to be SCI_SELECTIONDUPLICATE. This would be a new command rather than a change to the behaviour of SCI_LINEDUPLICATE for where SCI_LINEDUPLICATE is used programmatically. Neil _______________________________________________ Scintilla-interest mailing list [email protected] http://mailman.lyra.org/mailman/listinfo/scintilla-interest
