| 1 | = Using gedit with Django = |
| 2 | |
| 3 | gedit is a free, lightweight editing tool for the GNOME desktop found in many distributions of Linux, BSD and other Unix systems. |
| 4 | |
| 5 | == Feature List == |
| 6 | |
| 7 | * Full support for internationalized text (UTF-8) |
| 8 | * Configurable syntax highlighting for various languages (C, C++, Java, HTML, XML, Python, Perl and many others) |
| 9 | * Undo/Redo |
| 10 | * Editing files from remote locations |
| 11 | * File reverting |
| 12 | * Print and print preview support |
| 13 | * Clipboard support (cut/copy/paste) |
| 14 | * Search and replace |
| 15 | * Go to specific line |
| 16 | * Auto indentation |
| 17 | * Text wrapping |
| 18 | * Line numbers |
| 19 | * Right margin |
| 20 | * Current line highlighting |
| 21 | * Bracket matching |
| 22 | * Backup files |
| 23 | * Configurable fonts and colors |
| 24 | * A complete online user manual |
| 25 | |
| 26 | Some screenshots of gedit: |
| 27 | |
| 28 | http://www.gnome.org/projects/gedit/screenshots.html |
| 29 | |
| 30 | There are useful plugins like a python console or snippets and of course you can write your own plugins in python. |
| 31 | |
| 32 | http://live.gnome.org/Gedit/Plugins/BetterPythonConsole |
| 33 | |
| 34 | == django theme for gedit == |
| 35 | |
| 36 | I created a theme based on the color scheme used on the Django website. |
| 37 | |
| 38 | To install the scheme copy the django.xml to /usr/share/gtksourceview-2.0/styles/ |
| 39 | |
| 40 | {{{ |
| 41 | sudo cp django.xml /usr/share/gtksourceview-2.0/styles/ |
| 42 | }}} |
| 43 | |
| 44 | and activate it in gedit > Edit > Preferences > Fonts & Colors. |
| 45 | |