PluginSelectionEncloser.py

changeset 13
2d4785f57db3
parent 11
7c821731282a
child 16
d5eee7835f33
equal deleted inserted replaced
12:c1c3bdca9b4f 13:2d4785f57db3
5 5
6 """ 6 """
7 Module implementing the Selection Encloser plug-in. 7 Module implementing the Selection Encloser plug-in.
8 """ 8 """
9 9
10 from __future__ import unicode_literals # __IGNORE_WARNING__ 10 from __future__ import unicode_literals
11 11
12 import os 12 import os
13 import json 13 import json
14 14
15 from PyQt4.QtCore import QObject, QTranslator, QCoreApplication 15 from PyQt4.QtCore import QObject, QTranslator, QCoreApplication
22 # Start-Of-Header 22 # Start-Of-Header
23 name = "Selection Encloser Plug-in" 23 name = "Selection Encloser Plug-in"
24 author = "Detlev Offenbach <detlev@die-offenbachs.de>" 24 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
25 autoactivate = True 25 autoactivate = True
26 deactivateable = True 26 deactivateable = True
27 version = "0.3.0" 27 version = "1.0.0"
28 className = "SelectionEncloserPlugin" 28 className = "SelectionEncloserPlugin"
29 packageName = "SelectionEncloser" 29 packageName = "SelectionEncloser"
30 shortDescription = "Enclose the selection with a string." 30 shortDescription = "Enclose the selection with a string."
31 longDescription = \ 31 longDescription = \
32 """This plug-in implements a tool to enclose the selection of""" \ 32 """This plug-in implements a tool to enclose the selection of""" \

eric ide

mercurial