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 = "6.12.1" |
26 version = "7.0.0" |
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 = ( |
301 Private method to determine the valid language strings. |
300 Private method to determine the valid language strings. |
302 |
301 |
303 @return list of valid language strings |
302 @return list of valid language strings |
304 @rtype list of str |
303 @rtype list of str |
305 """ |
304 """ |
306 return ["Python", "Python2", "Python3", "Pygments|Python", |
305 return ["Python3", "Pygments|Python 3", "MicroPython"] |
307 "Pygments|Python 3"] |
|
308 |
306 |
309 def __editorOpened(self, editor): |
307 def __editorOpened(self, editor): |
310 """ |
308 """ |
311 Private slot called, when a new editor was opened. |
309 Private slot called, when a new editor was opened. |
312 |
310 |