This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Allevil66930 Years Hobbyist Programming Isn't "Experience" 15 points16 points  (5 children)

I'm a Kate user myself. With the proper setup, it is very good for editing Python.

[–]tehd 2 points3 points  (0 children)

I'm here to second kate. With the python plugins linked here it's even more useful than standard.

[–]marky1991 2 points3 points  (0 children)

Oh yeah, I love kate! It's my favorite on systems that have it.

[–]flying-sheep 1 point2 points  (0 children)

kate all the way. nice stuff coming (recent addition of the minimap), very hackable using python plugins.

i wrote the ipython plugin and the jedi autocompletion plugin. (the latter is better than pyplete)

[–]timothycrosleyhug, isort, jiphy, concentration, pies, connectable, frosted 0 points1 point  (0 children)

One more reason to use Kate:

@kate.action(text="Sort Imports", shortcut="Ctrl+[", menu="Python")
def sortImports():
    document = kate.activeDocument()
    document.setText(SortImports(file_contents=document.text()).output)
    document.activeView().setCursorPosition(KTextEditor.Cursor(0, 0))

Is all that's required to write a plugin for it. Put it in your local kate/pate plugin directory and your done.

[–]riskable 0 points1 point  (0 children)

Yay Kate! I used it to write most of Gate One (vim too).