Python Console in gedit

Being an Ubuntu user gedit is my default editor for programming (sometimes I use netbeans though). Today I found a post where the author wrote about gedit plugins. I just played with it a bit and found that it has a Python Console! This is really interesting.

You can also try installing the plugin:
sudo apt-get install gedit-plugins

Now go to:
edit > preferences > plugins
and select which plugins you want and enable the side pane & bottom pane from the view menue.

Comments

nbv4 said…
The most useful one for me is the shippets plugin. I have it set up so all I have to do is type "debug[tab]" and it prints this:

import pdb; pdb.set_trace()

Very useful.
Adam Metzler said…
Gedit has had this for some time now. The great thing about this is try "dir(window)" and see all the things that you can manipulate about gedit. You will need to understand the pygtk api to use them. Another great addition by way of plugin is the terminal that appears next to the python console.
Taoelism said…
Kate has a terminal(standard) too. As a kde(4) user, kate has my preference.
I simply don't like the ugly GTK(+) style.

Popular posts from this blog

Strip HTML tags using Python

lambda magic to find prime numbers

Convert text to ASCII and ASCII to text - Python code