--- a/Preferences/__init__.py Sat Oct 21 15:13:56 2017 +0200 +++ b/Preferences/__init__.py Sat Oct 21 15:18:15 2017 +0200 @@ -429,9 +429,6 @@ "CallTipsScintillaOnFail": False, # show QScintilla calltips, if plug-in fails - "ShowInfoOnOpenParenthesis": True, - # TODO: add to editor configuration page - "AutoCheckSyntax": True, "OnlineSyntaxCheck": True, "OnlineSyntaxCheckInterval": 5, @@ -1467,8 +1464,9 @@ # defaults for Code Documentation Viewer docuViewerDefaults = { - "ShowInfoAsMarkdown": False, + "ShowInfoAsRichText": False, "Provider": "disabled", + "ShowInfoOnOpenParenthesis": True, } @@ -3576,7 +3574,7 @@ @param prefClass preferences class used as the storage area @return the requested editor colour """ - if key in ["ShowInfoAsMarkdown"]: + if key in ["ShowInfoAsRichText", "ShowInfoOnOpenParenthesis"]: return toBool(prefClass.settings.value( "CodeDocumentationViewer/" + key, prefClass.docuViewerDefaults[key]))