17 |
17 |
18 from eric7 import Preferences |
18 from eric7 import Preferences |
19 from eric7.EricWidgets.EricApplication import ericApp |
19 from eric7.EricWidgets.EricApplication import ericApp |
20 |
20 |
21 # Start-Of-Header |
21 # Start-Of-Header |
22 name = "Selection Encloser Plug-in" |
22 __header__ = { |
23 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
23 "name": "Selection Encloser Plug-in", |
24 autoactivate = True |
24 "author": "Detlev Offenbach <detlev@die-offenbachs.de>", |
25 deactivateable = True |
25 "autoactivate": True, |
26 version = "10.1.0" |
26 "deactivateable": True, |
27 className = "SelectionEncloserPlugin" |
27 "version": "10.1.1", |
28 packageName = "SelectionEncloser" |
28 "className": "SelectionEncloserPlugin", |
29 shortDescription = "Enclose the selection with a string." |
29 "packageName": "SelectionEncloser", |
30 longDescription = ( |
30 "shortDescription": "Enclose the selection with a string.", |
31 """This plug-in implements a tool to enclose the selection of""" |
31 "longDescription": ( |
32 """ the current editor with a string. The enclosing string is""" |
32 """This plug-in implements a tool to enclose the selection of""" |
33 """ selectable via a configurable menu hierarchy.""" |
33 """ the current editor with a string. The enclosing string is""" |
34 ) |
34 """ selectable via a configurable menu hierarchy.""" |
35 needsRestart = False |
35 ), |
36 pyqtApi = 2 |
36 "needsRestart": False, |
|
37 "hasCompiledForms": True, |
|
38 "pyqtApi": 2, |
|
39 } |
37 # End-Of-Header |
40 # End-Of-Header |
38 |
41 |
39 error = "" |
42 error = "" |
40 |
43 |
41 selectionEncloserPluginObject = None |
44 selectionEncloserPluginObject = None |