[PyCrust] Fw: pycrust 0.3 that will be part of the release tonight
Brought to you by:
pobrien
|
From: Neil H. <ne...@sc...> - 2001-08-07 22:18:13
|
[I'm forwarding this to the list as these sorts of discussions should really occur there where more people can contribute and so they will get archived] Patrick: > Autocomplete: When you type a dot you get the list, then you > type n characters followed by backspacing n characters you are > back at the dot and the list has gone away. ... Whether the default should be cancelling by deleting to the dot or deleting the dot is a bit of a personal preference thing. There is a difference here between invoking it for a dot and invoking it because the user has started typing an identifier and asked for a list. My thinking is that you have removed all of the characters that you put into the identifier and so the annoying box should disappear. There should probably be another preference setting to define this. > AutoCSetFillUps, and AutoCSetChooseSingle: I couldn't find > any documentation on these and Google came up empty. Is > there a description somewhere? I don't know what they do > or how to use them. These are not described in the main documentation: http://www.scintilla.org/ScintillaDoc.html although there are brief comments in the scintilla/include/scintilla.iface file which is the definition of the Scintilla API. # Define a set of character that when typed fills up the selected word. set void AutoCSetFillUps=2112(, string characterSet) # Should a single item auto-completion list automatically choose the item. set void AutoCSetChooseSingle=2113(bool chooseSingle,) > Coloring: I had a sense that the lexer wanted to own the whole > doc but thought I might be missing something. You confirmed, > thank you. I'll look at Mark's code and see if my head spins, > which tends to happen when I try to make sense of the > PythonWin code. Maybe we need a dumber Mark ;) Neil |