shell.autoCompleteAutoHide added with default of True.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25676 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -9,6 +9,8 @@ Removed docs tabs from crust interface:
|
|||||||
|
|
||||||
Fixed Calltip tab refresh problem on Windows.
|
Fixed Calltip tab refresh problem on Windows.
|
||||||
|
|
||||||
|
shell.autoCompleteAutoHide added with default of True.
|
||||||
|
|
||||||
|
|
||||||
0.9.3 (9/25/2003 to 1/24/2004)
|
0.9.3 (9/25/2003 to 1/24/2004)
|
||||||
------------------------------
|
------------------------------
|
||||||
|
@@ -87,7 +87,8 @@ class EditWindow(stc.StyledTextCtrl):
|
|||||||
self.autoCompleteIncludeDouble = True
|
self.autoCompleteIncludeDouble = True
|
||||||
self.autoCompleteCaseInsensitive = True
|
self.autoCompleteCaseInsensitive = True
|
||||||
self.AutoCompSetIgnoreCase(self.autoCompleteCaseInsensitive)
|
self.AutoCompSetIgnoreCase(self.autoCompleteCaseInsensitive)
|
||||||
self.AutoCompSetAutoHide(False)
|
self.autoCompleteAutoHide = True
|
||||||
|
self.AutoCompSetAutoHide(self.autoCompleteAutoHide)
|
||||||
self.AutoCompStops(' .,;:([)]}\'"\\<>%^&+-=*/|`')
|
self.AutoCompStops(' .,;:([)]}\'"\\<>%^&+-=*/|`')
|
||||||
# Do we want to automatically pop up command argument help?
|
# Do we want to automatically pop up command argument help?
|
||||||
self.autoCallTip = True
|
self.autoCallTip = True
|
||||||
|
@@ -151,6 +151,7 @@ Ctrl+= Default font size.
|
|||||||
'ask',
|
'ask',
|
||||||
'autoCallTip',
|
'autoCallTip',
|
||||||
'autoComplete',
|
'autoComplete',
|
||||||
|
'autoCompleteAutoHide',
|
||||||
'autoCompleteCaseInsensitive',
|
'autoCompleteCaseInsensitive',
|
||||||
'autoCompleteIncludeDouble',
|
'autoCompleteIncludeDouble',
|
||||||
'autoCompleteIncludeMagic',
|
'autoCompleteIncludeMagic',
|
||||||
@@ -822,6 +823,8 @@ Platform: %s""" % \
|
|||||||
|
|
||||||
def autoCompleteShow(self, command):
|
def autoCompleteShow(self, command):
|
||||||
"""Display auto-completion popup list."""
|
"""Display auto-completion popup list."""
|
||||||
|
self.AutoCompSetAutoHide(self.autoCompleteAutoHide)
|
||||||
|
self.AutoCompSetIgnoreCase(self.autoCompleteCaseInsensitive)
|
||||||
list = self.interp.getAutoCompleteList(command,
|
list = self.interp.getAutoCompleteList(command,
|
||||||
includeMagic=self.autoCompleteIncludeMagic,
|
includeMagic=self.autoCompleteIncludeMagic,
|
||||||
includeSingle=self.autoCompleteIncludeSingle,
|
includeSingle=self.autoCompleteIncludeSingle,
|
||||||
|
Reference in New Issue
Block a user