PluginRefactoringRope.py

changeset 337
cfff39f4594d
parent 335
9438c2ed7732
child 339
5a7b5e609162
equal deleted inserted replaced
336:e2f9518e5490 337:cfff39f4594d
21 # Start-Of-Header 21 # Start-Of-Header
22 name = "Refactoring Rope Plugin" 22 name = "Refactoring Rope Plugin"
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 = "7.0.0" 26 version = "7.0.1"
27 className = "RefactoringRopePlugin" 27 className = "RefactoringRopePlugin"
28 packageName = "RefactoringRope" 28 packageName = "RefactoringRope"
29 internalPackages = "rope" 29 internalPackages = "rope"
30 shortDescription = "Refactoring using the Rope library." 30 shortDescription = "Refactoring using the Rope library."
31 longDescription = ( 31 longDescription = (
300 Private method to determine the valid language strings. 300 Private method to determine the valid language strings.
301 301
302 @return list of valid language strings 302 @return list of valid language strings
303 @rtype list of str 303 @rtype list of str
304 """ 304 """
305 return ["Python3", "Pygments|Python 3", "MicroPython"] 305 return ["Python3", "MicroPython",
306 "Pygments|Python", "Pygments|Python 2.x"]
306 307
307 def __editorOpened(self, editor): 308 def __editorOpened(self, editor):
308 """ 309 """
309 Private slot called, when a new editor was opened. 310 Private slot called, when a new editor was opened.
310 311

eric ide

mercurial