Update of /cvsroot/pywin32/pywin32/Pythonwin/pywin/scintilla
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv29496/scintilla
Modified Files:
bindings.py
Log Message:
>From Rémi Paucher; enable auto-expand on french keyboards
Index: bindings.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/Pythonwin/pywin/scintilla/bindings.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** bindings.py 14 Nov 2008 00:22:25 -0000 1.6
--- bindings.py 4 Dec 2008 12:45:51 -0000 1.7
***************
*** 172,175 ****
--- 172,180 ----
# (XXX - which do not work :-(
event = self.keymap.get( keyinfo )
+ #Enable autoexpand an autocompletion on French keyborads
+ if keyinfo == (190, 16):
+ event = "KeyDot"
+ elif keyinfo == (222, 0):
+ event = "<<expand-word>>"
if event is None:
## if key == 220: # Dead key
|