PluginSelectionEncloser.py

changeset 48
767eb5905e08
parent 46
c12f1feea96a
child 51
318d7ebbdce2
equal deleted inserted replaced
47:82b6c69429b8 48:767eb5905e08
21 # Start-Of-Header 21 # Start-Of-Header
22 name = "Selection Encloser Plug-in" 22 name = "Selection Encloser Plug-in"
23 author = "Detlev Offenbach <detlev@die-offenbachs.de>" 23 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
24 autoactivate = True 24 autoactivate = True
25 deactivateable = True 25 deactivateable = True
26 version = "3.2.0" 26 version = "3.2.1"
27 className = "SelectionEncloserPlugin" 27 className = "SelectionEncloserPlugin"
28 packageName = "SelectionEncloser" 28 packageName = "SelectionEncloser"
29 shortDescription = "Enclose the selection with a string." 29 shortDescription = "Enclose the selection with a string."
30 longDescription = ( 30 longDescription = (
31 """This plug-in implements a tool to enclose the selection of""" 31 """This plug-in implements a tool to enclose the selection of"""
98 """ 98 """
99 Constructor 99 Constructor
100 100
101 @param ui reference to the user interface object (UI.UserInterface) 101 @param ui reference to the user interface object (UI.UserInterface)
102 """ 102 """
103 super.__init__(ui) 103 super().__init__(ui)
104 self.__ui = ui 104 self.__ui = ui
105 105
106 # menu is a list of lists; each list consists of a string for the 106 # menu is a list of lists; each list consists of a string for the
107 # submenu title and a list of submenu entries. Each submenu entry 107 # submenu title and a list of submenu entries. Each submenu entry
108 # consists of another list giving the title and the enclosing string 108 # consists of another list giving the title and the enclosing string

eric ide

mercurial