Main > Free Download Search >

Free text editors 0.1 software for linux

text editors 0.1

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 5919
Edit by Text Editors 0.1

Edit by Text Editors 0.1


Edit by Text Editors allows you to open a file with Kate, Kwrite, Kedit, Khexedit by a KDE service menu. more>>
Edit by Text Editors allows you to open a file with Kate, Kwrite, Kedit, Khexedit by a KDE service menu.

To install the service menu you must copy editby.desktop in ~/.kde/share/apps/konqueror/servicemenus

<<less
Download (MB)
Added: 2007-08-06 License: GPL (GNU General Public License) Price:
814 downloads
Teddy XML Editor 1.1

Teddy XML Editor 1.1


Teddy is a tabular editor and displayer for XML files. more>>
Teddy is a tabular editor and display for XML files. It presents the structure and content of XML files in a way that is both visually pleasing and easy to use. It is available free, under the GNU public license, for Mac OS X and Linux.
If you have Qt for Windows it should build and run fine for it, but it has not been tested on that operating system.
Enhancements:
- Ability to open currently opened file in external text editor.
- Linux RPM installs application icon and start menu item in KDE.
- Save no longer forces scroll position to the top.
- Single line cell styles now correctly dimensioned.
<<less
Download (0.067MB)
Added: 2005-10-06 License: GPL (GNU General Public License) Price:
1479 downloads
text-vimcolor 0.11

text-vimcolor 0.11


text-vimcolor is a command-line program to syntax color a file in HTML, XML or PDF. more>>
text-vimcolor is a command-line program to syntax color a file in HTML, XML or PDF.

SYNOPSIS

$ text-vimcolor --format html --full-page FILENAME > OUTPUT.html
$ text-vimcolor --format xml FILENAME > OUTPUT.xml
$ text-vimcolor --format pdf FILENAME --output OUTPUT.pdf

This program uses the Vim text editor to highlight text according to its syntax, and turn the highlighting into HTML, XML or PDF output. It works with any file type which Vim itself can highlight. Usually Vim will be able to autodetect the file format based on the filename (and sometimes the contents of the file).

Exactly one filename should be given on the command line to name the input file. If none is given input will instead be read from stdin (the standard input).
If Vim cant guess the file type automatically, it can be specified explicitly using the --filetype option. For example:

$ text-vimcolor --format html --filetype prolog foo.pl > foo.html

This program is a command line interface to the Perl module Text::VimColor.

OPTIONS

The following options are understood:

--help

Show a summary of the usage, including a list of options.

--debug

Turns on debugging in the underlying Perl module. This makes it print the command used to run Vim.

--filetype file-type

Set the type of the file explicitly. The file-type argument should be something which Vim will recognise when set with its filetype option. Examples are perl, cpp (for C++) and sh (for Unix shell scripts). These names are case sensitive, and should usually be all-lowercase.

--format output-format

The output format to generate. Must be one of the following:
html

Generate XHTML output, with text marked with elements with class attributes. A CSS stylesheet should be used to define the coloring, etc., for the output. See the --full-page option below.

xml

Output is in a simple XML vocabulary. This can then be used by other software to do further transformations (e.g., using XSLT).

pdf

XML output is generated and fed to the FOP XSL-FO processor, with an appropriate XSL style sheet. The stylesheet uses XSLT to transform the normal XML output into XSL-FO, which is then rendered to PDF. For this to work, the command fop must be available. An output file must be specified with --output with this format.

Full details of the HTML and XML output formats can be found in the documentation for Text::VimColor.

--output output-filename

Specifies the name of the output file (which will end up containing either HTML, XML or PDF). If this option is omitted, the output will be sent to stdout (the standard output). This option is required when the output format is PDF (because of limitations in FOP).

--full-page

When the output format is HTML, this option will make the output a complete HTML page, rather than just a fragment of HTML. A CSS stylesheet will be inserted inline into the output, so the output will be useable as it is.

--no-inline-stylesheet

When the output format is HTML and --fullpage is given, a stylesheet is normally inserted in-line in the output file. If this option is given it will instead be referenced with a element.

--let name=value

When Vim is run the value of name will be set to value using Vims let command. More than one of these options can be set. The value is not quoted or escaped in any way, so it can be an expression. These settings take precedence over --unlet options.

This option corresponds to the vim_let setting and method in the Perl module.

--unlet name

Prevent the value of name being set with Vims let command. This can be used to turn off default settings.

This option corresponds to the vim_let setting and method in the Perl module, when used with a value of undef.

<<less
Download (0.020MB)
Added: 2007-05-31 License: Perl Artistic License Price:
876 downloads
Text::VimColor 0.11

Text::VimColor 0.11


Text::VimColor is a syntax color text in HTML or XML using Vim. more>>
Text::VimColor is a syntax color text in HTML or XML using Vim.

SYNOPSIS

use Text::VimColor;
my $syntax = Text::VimColor->new(
file => $0,
filetype => perl,
);

print $syntax->html;
print $syntax->xml;

This module tries to markup text files according to their syntax. It can be used to produce web pages with pretty-printed colourful source code samples. It can produce output in the following formats:

HTML

Valid XHTML 1.0, with the exact colouring and style left to a CSS stylesheet

XML

Pieces of text are marked with XML elements in a simple vocabulary, which can be converted to other formats, for example, using XSLT

Perl array

A simple Perl data structure, so that Perl code can be used to turn it into whatever is needed

This module works by running the Vim text editor and getting it to apply its excellent syntax highlighting (aka font-locking) to an input file, and mark pieces of text according to whether it thinks they are comments, keywords, strings, etc. The Perl code then reads back this markup and converts it to the desired output format.

This is an object-oriented module. To use it, create an object with the new function (as shown above in the SYNOPSIS) and then call methods to get the markup out.

<<less
Download (0.020MB)
Added: 2006-09-12 License: Perl Artistic License Price:
1137 downloads
Curses::UI::TextEditor 0.95

Curses::UI::TextEditor 0.95


Curses::UI::TextEditor module can create and manipulate texteditor widgets. more>>
Curses::UI::TextEditor module can create and manipulate texteditor widgets.

CLASS HIERARCHY

Curses::UI::Widget
Curses::UI::Searchable
|
+----Curses::UI::TextEditor

SYNOPSIS

use Curses::UI;
my $cui = new Curses::UI;
my $win = $cui->add(window_id, Window);

my $editor = $win->add(
myeditor, TextEditor,
-vscrollbar => 1,
-wrapping => 1,
);

$editor->focus();
my $text = $editor->get();

Curses::UI::TextEditor is a widget that can be used to create a couple of different kinds of texteditors. These are:

multi-line texteditor

This is a multi-line text editor with features like word-wrapping, maximum textlength and undo.

single-line texteditor

The texteditor can be created as a single-line editor. Most of the features of the default texteditor will remain. Only the multi-line specific options will not be available (like moving up and down in the text).

read only texteditor

The texteditor can also be used in read only mode. In this mode, the texteditor will function as a text viewer. The user can walk through the text and search trough it.

See exampes/demo-Curses::UI::TextEditor in the distribution for a short demo of these.

<<less
Download (0.14MB)
Added: 2007-08-08 License: Perl Artistic License Price:
807 downloads
medit 0.8.10

medit 0.8.10


medit is a multiplatform GTK text editor. more>>
medit is a multiplatform GTK text editor. Started originally as a simple built-in editor component in GGAP, it grew up to a real text editor.
The intention now is to make it a useful programming and around-programming text editor.
Main features:
- Configurable syntax highlighting.
- Configurable keyboard accelerators.
- Multiplatform - works both on unix and windows.
- Plugins: can be written in C or Python.
- Configurable tools available from the main and context menus. They can be written in Python, or it can be a shell script, or in MooScript - simple builtin scripting lanugage.
- Regular expression search/replace, grep and find frontends, builtin file selector and whatnot.
<<less
Download (1.4MB)
Added: 2007-08-09 License: LGPL (GNU Lesser General Public License) Price:
865 downloads
RText 0.9.9.1

RText 0.9.9.1


RText is a fully customizable programmers text editor. more>>
RText is a fully customizable programmers text editor.
Main features:
- Syntax Highlighting is actively being developed. Currently supported languages are Assembler, X86 assembler, C, C++, C#, Fortran, Java, JavaScript, Perl, HTML, SAS, SQL, Windows batch, UNIX shell, and XML (screenshot). RText will support more languages in the not-too-distant future. RText is also capable of bracket matching, highlighting the current line, and displaying a margin line to help you with your programming.
- Macro support allows you to perform complex editing tasks quickly and in an automated fashion.
- CTags support if you have Exhuberant CTags installed in your machine (regular UNIX ctags wont cut it). With the "Source Browser" you can see a list of functions, variables, etc. in the current source, allowing you to quickly jump to a function definition, insert a method name at the caret position, and other handy stuff.
- File encodings are supported. Open and edit files in any encoding supported by your JVM.
- Edit multiple documents simultaneously through a tabbed, list, or traditional MDI interface. No need to open multiple instances of the application to edit multiple documents.
- Code Templates allow you to associate short identifiers with longer phrases/code blocks you frequently type to speed up time spent banging at the keys.
- Find/Find Next/Replace/Replace Next dialogs make searching for text easy, and include such options as Match Case, Whole Word Only, Use Regular Expressions, and Mark All (screenshot).
- Find in Files dialog allows you to search for a given string or regular expression in any group of files or directories on your computer (screenshot).
- Unlimited Undo/Redo actions ensure you will never make a mistake you cant recover from.
- Print and Print Preview functionality allow you to create hard copies of your documents with ease (screenshot).
- Auto-Reload. RText will sense if a document you have open in RText is modified by another program, and ask you whether you want to reload the document.
- Customizable user interface allow you to have your editor look the way you want it to. Change such features as the Java Look and Feel, the view style, the icon set used in menus and on the toolbar, the font, the background (choose a color or a picture from your computer), the colors used for syntax highlighting, and more.
- Help documentation similar to HTML Help found in many Microsoft Windows applications provides you with assistance if you should need it (screenshot).
- Cross-platform. Since RText is written in Java, it can be run on any platform supporting version 1.4 or greater of the Java Runtime Environment.
Enhancements:
- This release allows you to set the line terminator used for new files ("General" panel in the Options dialog), cleans up some unnecessary code, removes some unimplemented menu items unintentionally left around in the last release, and updates the translations.
<<less
Download (1.5MB)
Added: 2007-06-16 License: GPL (GNU General Public License) Price:
868 downloads
XPontus XML Editor 1.0.0 RC3

XPontus XML Editor 1.0.0 RC3


XPontus is a free java based XML editor designed towards text editing. more>>
XPontus is a free java based XML editor designed towards text editing. XPontus XML Editor aims to provide a free alternative to commercial XML Editors.

As XPontus is written in Java it is available for all java enabled operating systems. It has been reported to run correctly on Linux, Windows, Mac OS X, Solaris and FreeBSD. There are many installers for platform convenience.

The software is distributed under the GNU GPL License.

<<less
Download (17.5MB)
Added: 2007-06-13 License: GPL (GNU General Public License) Price:
864 downloads
Metawriter 0.0.13

Metawriter 0.0.13


Metawriter provides an editor for interlinked texts. more>>
Metawriter provides an editor for interlinked texts.

It is useful for writing highly structured documentation, or creating a mindmap with link tracking.

Each text is given a name, a title, a group, and a state marker.

The content syntax is similar to that used by a Wiki.

<<less
Download (0.11MB)
Added: 2007-01-22 License: GPL (GNU General Public License) Price:
1005 downloads
GETOX 0.1.1

GETOX 0.1.1


GETOX is a XML text editor. more>>
GETOX is a project developped by IDEALX. This software aims at giving users the ability to write XML files without having advanced knowledge of XML concepts.
It should also allow users to produce valid documents at any time. GETOX is a free software, and is released under the GNU General Public License.
Main features:
File manipulation:
- Open/Close/Save XML files including parsing of the associated DTD
- Creation of a new XML file generated from a DTD
Text manipulation
- The main goal of GETOX is to manipulate XML file as if it was a simple text file.
Right now, users can:
- Add and remove tags according to the DTD
- Edit text in #pcdata
- Move across the text using arrows
- Cut and Paste text from widgets to X clipboard
- Choose encoding of some XML parameters
- Modify path to DTD
- Modify look & feel of getox_canvas
<<less
Download (0.47MB)
Added: 2005-08-11 License: GPL (GNU General Public License) Price:
1534 downloads
FreeDOS 1.0

FreeDOS 1.0


FreeDOS aims to be a complete, free, 100% MS-DOS compatible operating system. more>>
FreeDOS aims to be a complete, free, 100% MS-DOS compatible operating system. Mostly achieved except Windows compatibility - Windows standard-mode works on FreeDOS, but 386-mode / WfW 3.11 does not.
Main features:
- Easy multiboot with Win95-2003 and NT/XP/ME
- FAT32 file system and large disk support (LBA)
- LFN support (on command line with 4DOS, which is now freeware: 4DOS for OS/2 is even open source)
- LBACACHE - disk cache (harddisks in CHS and LBA mode, diskette)
- Memory Managers: HIMEM, EMM386, UMBPCI
- SHSUCDX (MSCDEX replacement) and CD-ROM driver (XCDROM)
- CUTEMOUSE - Mouse driver with scroll wheel support
- FDAPM - APM info/control/suspend/poweroff, ACPI throttle, HLT energy saving...
- XDMA - UDMA driver for DOS: up to 4 harddisks
- MPXPLAY - media player for mp3, ogg, wmv... with built-in AC97 and SB16 drivers
- 7ZIP, INFO-ZIP zip & unzip... - modern archivers are available for DOS
- EDIT / SETEDIT - multi window text editors
- HTMLHELP - help viewer, can read help directly from a zip file
- PG - powerful text viewer (similar to V. D. Buergs LIST)
- many text mode programs ported from Linux thanks to DJGPP
- GRAPHICS - greyscale hardcopy on ESC/P, HP PCL and PostScript printers
FreeDOS was previously known as "Free-DOS" and originally as "PD-DOS." For a little trip down memory lane: In 1994, I was a physics student at the University of Wisconsin-River Falls. Most of my work for school had been done using DOS - writing programs, dialing up to the university computer, network, analysing lab data, etc. I really loved DOS; I did everything with it. I had a 386 desktop system in my dorm room and an XT laptop that I would carry around with me to do work "on the go".
<<less
Download (153MB)
Added: 2006-09-04 License: GPL (GNU General Public License) Price:
1158 downloads
FCKeditor 2.4.3

FCKeditor 2.4.3


FCKeditor is a text editor for Internet. more>>
FCKeditor is an HTML/DHTML editor for ASP, ASP.NET, ColdFusion, PHP, and JavaScript that brings to the Web much of the powerful functionality of known desktop editors like Word.
FCKeditor is very lightweight, and doesnt require any kind of installation on the client computer.
Main features:
- Internet Explorer 5.5+ and Gecko browser (Mozilla / Firefox / Netscape) compatibility
- XHTML 1.0 support
- Font formatting: type, size, color, style, bold, italic, etc
- Text formatting: alignment, indentation, bullets list, etc
- Cut, Paste and Past as Plain Text, Undo and Redo
- Paste from Word cleanup with auto detection
- Link creation
- Anchors support (version 1.x)
- Image insertion, with upload and server browsing support
- Table creation and editing (add, delete rows, etc)
- Table cells editing (size, colors, etc)
- Form fields (version 1.x)
- Right click context menus support
- Complete toolbar customization
- Skins support.
- Spell checker (version 1.x)
- CSS support for a better integration in your web site
- Multi-language support with automatic user language detection. Including Right to Left scripting.
- Lightweight and fast
- Automatic browser detection and customization
- Integration with ASP, ASP.NET, Java, ColdFusion, PHP, Javascript and IE Behaviours (version 1.x)
- Image and file links upload and server repository browser.
- For web developer it is easy to install and customize
- For web users its simply easy to use!
<<less
Download (0.70MB)
Added: 2007-06-14 License: LGPL (GNU Lesser General Public License) Price:
542 downloads
gedit 2.18.2

gedit 2.18.2


gedit is the official text editor of the GNOME desktop environment. more>>
gedit is the official text editor of the GNOME desktop environment.
While aiming at simplicity and ease of use, gedit is a powerful general purpose text editor.
gedit features also a flexible plugin system which can be used to dynamically add new advanced features to gedit itself.
gedit is free software released under the GNU General Public License (GPL).
Main features:
- Full support for internationalized text (UTF-8)
- Configurable syntax highlighting for various languages (C, C++, Java, HTML, XML, Python, Perl, etc.)
- Undo/Redo
- Loading files from remote locations
- File reverting
- Print and print preview support
- Clipboard support (cut/copy/paste)
- Search and replace
- Go to specific line
- Auto indentation
- Text wrapping
- Line numbers
- Right margin
- Current line highlighting
- Bracket matching
- Backup files
- Configurable fonts and colors
- A complete online user manual
<<less
Download (4.6MB)
Added: 2007-07-04 License: GPL (GNU General Public License) Price:
850 downloads
SteGUI 0.0.1

SteGUI 0.0.1


SteGUI is a graphical front-end to Steghide. more>>
SteGUI is a graphical front-end to Steghide. It lets users view the images and play the sounds that Steghide allows as cover files, and command the program all with one tool. It also embeds a simple text editor to manage text payload files.
SteGUI runs on GNU/Linux systems only for the moment (due to pstreams and alsa
support). Before you compile SteGUI you will need to have installed the development packages for:
FLTK >= 1.1.6
ALSA
Libjpeg
and Steghide >= 0.5.1 installed.
To compile SteGUI type:
make all
After that you can run SteGUI with:
bin/steGUI
Enhancements:
- lightly fixed makefile and added bz2 target
<<less
Download (0.037MB)
Added: 2006-07-13 License: GPL (GNU General Public License) Price:
1200 downloads
GNU ed 0.8

GNU ed 0.8


GNU ed is an 8-bit clean, POSIX-compliant line editor. more>>
GNU ed is a line-oriented text editor. GNU ed is used to create, display, modify and otherwise manipulate text files, both interactively and via shell scripts.
A restricted version of `ed, `red, can only edit files in the current directory and cannot execute shell commands. `ed is the `standard text editor in the sense that it is the original editor for Unix, and thus widely available.
Enhancements:
- The testsuite now exits unsuccesfully in case of error.
- Some minor problems in the manual page have been fixed.
- The GFDL has been added to the info file.
<<less
Download (0.086MB)
Added: 2007-08-20 License: GPL v3 Price:
800 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5