Changes between Initial Version and Version 1 of gedit


Ignore:
Timestamp:
May 19, 2008, 7:11:04 PM (16 years ago)
Author:
b23 <bdev23@…>
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • gedit

    v1 v1  
     1= Using gedit with Django =
     2
     3gedit 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
     26Some screenshots of gedit:
     27
     28http://www.gnome.org/projects/gedit/screenshots.html
     29
     30There are useful plugins like a python console or snippets and of course you can write your own plugins in python.
     31
     32http://live.gnome.org/Gedit/Plugins/BetterPythonConsole
     33
     34== django theme for gedit ==
     35
     36I created a theme based on the color scheme used on the Django website.
     37
     38To install the scheme copy the django.xml to /usr/share/gtksourceview-2.0/styles/
     39
     40{{{
     41sudo cp django.xml /usr/share/gtksourceview-2.0/styles/
     42}}}
     43
     44and activate it in gedit > Edit > Preferences > Fonts & Colors.
     45 
Back to Top