Text editor

The educational technology and digital learning wiki
Revision as of 12:33, 29 August 2008 by Daniel K. Schneider (talk | contribs) (using an external editor)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Definition

A text editor is a software used to edit plain text files, such as HTML or XML code or programming code.

A word of clarification

It is important to understand that by plain text files we do not refer to text as in a letter or a book. "Plain text file" refers to the explicit contents of a computer file that use alphetical characters, numbers and various punctuation signs and other special characters. Such a file may just contain words and end of line characters but it also may include control codes. A text editor is always supposed to show everything that is part of file. However:

  • Most simple text editors can not show so called binary files, e.g. the encoding of a word file
  • Many have problems with certain character encoding systems. We suggest that you make sure that your text editor can handle both ISO-8859-1 (or whatever older coding system is used for your native language) and UTF-8 (a system that can handle most characters of most languages).


A text editor is a type of program used for editing plain text files.

There are important differences between plain text files created by a text editor, and document files created by word processors such as Microsoft Word, WordPerfect, or OpenOffice.org. Briefly:

  • A plain text file is represented and edited by showing all the characters as they are present in the file. The only characters usable for 'mark-up' are the control characters of the used character set; in practice this is newline, tab and formfeed. The most commonly used character set is ASCII, especially recently, as plain text files are more used for programming and configuration and less frequently used for documentation than in the past.
  • Documents created by a word processor generally contain fileformat-specific "control characters" beyond what is defined in the character set. These enable functions like bold, italic, fonts, columns, tables, etc. These and other common page formatting symbols were once associated only with desktop publishing but are now commonplace in the simplest word processor.
  • Word processors can usually edit a plain text file and save in the plain text file format. However one must take care to tell the program that this is what is wanted. This is especially important in cases such as source code, HTML, and configuration and control files. Otherwise the file will contain those "special characters" unique to the word processor's file format and will not be handled correctly by the utility the files were intended for.

([http://en.wikipedia.org/wiki/Text_editor Wikipedia, retrieved 10:33, 29 August 2008 (UTC)}}.

List of text editors

(there are many more !)

Light-weight editors

The most well know very light-weight editor is Window's Notepad. We do not recommend it's use unless for really small tasks. Also, it has trouble displaying files produce with Unix systems (that contain only a single end of line character, i.e. ^J).

There are lots of nice text editors with support for common formats and scripting languages used to create educational web contents and programs, e.g.

  • Notepad++ (Windows)
    • Lightweight and easy to use, does good syntax highlightning but no indentation
    • Has a rather large library of plugins.
  • PSPad (Windows).
    • Lightweight and easy to use, does syntax highlighting, but no indentation (too bad !)
    • Only thing you need to know is: "CTRL-space" will open a popup for contextual code completion

Specialized

Heavier systems

  • JEdit (Most systems)
    • This is a more complex editor than PSPad or similar, ok for programmers.

Many programmers choose to work with so-called Integrated Development Systems (IDE). These include a text editor, but offer additional functionalities.

Links