text editors
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3813
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
<<lessTo install the service menu you must copy editby.desktop in ~/.kde/share/apps/konqueror/servicemenus
Download (MB)
Added: 2007-08-06 License: GPL (GNU General Public License) Price:
814 downloads
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.
<<lessIf 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.
Download (0.067MB)
Added: 2005-10-06 License: GPL (GNU General Public License) Price:
1479 downloads
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.
<<lessCLASS 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.
Download (0.14MB)
Added: 2007-08-08 License: Perl Artistic License Price:
807 downloads
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.
<<lessSYNOPSIS
$ 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).
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.
Download (0.020MB)
Added: 2007-05-31 License: Perl Artistic License Price:
876 downloads
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.
<<lessAs 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.
Download (17.5MB)
Added: 2007-06-13 License: GPL (GNU General Public License) Price:
864 downloads
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.
<<lessSYNOPSIS
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.
Download (0.020MB)
Added: 2006-09-12 License: Perl Artistic License Price:
1137 downloads
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!
<<lessFCKeditor 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!
Download (0.70MB)
Added: 2007-06-14 License: LGPL (GNU Lesser General Public License) Price:
542 downloads
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".
<<lessMain 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".
Download (153MB)
Added: 2006-09-04 License: GPL (GNU General Public License) Price:
1158 downloads
Text::Templar 2.43
Text::Templar is a document-generation object class. more>>
Text::Templar is a document-generation object class.
SYNOPSIS
use Text::Templar;
my $template = < title >This is the title: < % METHOD title % >< /title >< /head >
< body >
< % METHOD body % >
< address >
< % METHOD footer % >
< /address >
< /body >
< /html >
EOF
my $templateObject = new Text::Templar
[ $template ];
$templateObject->title( "The Rest of the Story" );
$templateObject->body( @content );
$templateObject->footer( "Page 1" );
print $templateObject->render;
<<lessSYNOPSIS
use Text::Templar;
my $template = < title >This is the title: < % METHOD title % >< /title >< /head >
< body >
< % METHOD body % >
< address >
< % METHOD footer % >
< /address >
< /body >
< /html >
EOF
my $templateObject = new Text::Templar
[ $template ];
$templateObject->title( "The Rest of the Story" );
$templateObject->body( @content );
$templateObject->footer( "Page 1" );
print $templateObject->render;
Download (0.072MB)
Added: 2007-01-05 License: Perl Artistic License Price:
1023 downloads
jEdit 4.3 pre8
jEdit is a powerful text editor. more>>
jEdit is an Open Source text editor written in Java. jEdit has many useful features, such as syntax highlighting, bracket matching, regular expression searching, multiple file search and replace, folding, and keyboard macros.
jEdit also includes a powerful plugin architecture that allows more than 80 plugins to be downloaded and installed from within the editor.
Main features:
- Combines the best functionality of Unix, Windows and MacOS text editors.
- Runs on any operating system with a Java 2 version 1.3 or higher virtual machine - this includes MacOS X, OS/2, Unix, VMS and Windows.
- Efficient keyboard shortcuts for everything
- Comprehensive online help
- Unlimited undo/redo
- Copy and paste with an unlimited number of clipboards (known as "registers")
- Register contents are saved across editing sessions (4.2)
- "Kill ring" automatically remembers previously deleted text (4.2)
- Rich set of keyboard commands for manipulating entire words, lines and paragraphs at a time
- "Markers" for remembering positions in files to return to later
- Marker locations are saved across editing sessions
- Any number of editor windows may be open, each window may be split into several areas, each area can view a different file. Alternatively, different locations in one file can be viewed in more than one area
- Multiple open windows and split windows are remembered between editing sessions (4.2)
- Rectangular selection
- Multiple selection (sometimes known as "discontinuous" or "additive" selection) for manipulating several chunks of text at once
- Word wrap
<<lessjEdit also includes a powerful plugin architecture that allows more than 80 plugins to be downloaded and installed from within the editor.
Main features:
- Combines the best functionality of Unix, Windows and MacOS text editors.
- Runs on any operating system with a Java 2 version 1.3 or higher virtual machine - this includes MacOS X, OS/2, Unix, VMS and Windows.
- Efficient keyboard shortcuts for everything
- Comprehensive online help
- Unlimited undo/redo
- Copy and paste with an unlimited number of clipboards (known as "registers")
- Register contents are saved across editing sessions (4.2)
- "Kill ring" automatically remembers previously deleted text (4.2)
- Rich set of keyboard commands for manipulating entire words, lines and paragraphs at a time
- "Markers" for remembering positions in files to return to later
- Marker locations are saved across editing sessions
- Any number of editor windows may be open, each window may be split into several areas, each area can view a different file. Alternatively, different locations in one file can be viewed in more than one area
- Multiple open windows and split windows are remembered between editing sessions (4.2)
- Rectangular selection
- Multiple selection (sometimes known as "discontinuous" or "additive" selection) for manipulating several chunks of text at once
- Word wrap
Download (2.0MB)
Added: 2006-11-09 License: GPL (GNU General Public License) Price:
1083 downloads
Text::Emoticon 0.04
Text::Emoticon is a factory class for Yahoo! and MSN emoticons. more>>
Text::Emoticon is a factory class for Yahoo! and MSN emoticons.
SYNOPSIS
use Text::Emoticon;
my $emoticon = Text::Emoticon->new(MSN, { strict => 1, xhtml => 0 });
print $emoticon->filter(Hello ;));
Text::Emoticon is a factory class to dispatch MSN/YIM emoticon set. Its made to become handy to be used in other applications like Kwiki/MT plugins.
<<lessSYNOPSIS
use Text::Emoticon;
my $emoticon = Text::Emoticon->new(MSN, { strict => 1, xhtml => 0 });
print $emoticon->filter(Hello ;));
Text::Emoticon is a factory class to dispatch MSN/YIM emoticon set. Its made to become handy to be used in other applications like Kwiki/MT plugins.
Download (0.002MB)
Added: 2006-12-14 License: Perl Artistic License Price:
1050 downloads
Text::Editor::Vip::Buffer::DoUndoRedo 0.04
Text::Editor::Vip::Buffer::DoUndoRedo is a non optional plugin for a Text::Editor::Vip::Buffer. more>>
Text::Editor::Vip::Buffer::DoUndoRedo is a non optional plugin for a Text::Editor::Vip::Buffer.
The do, undo, redo functionality of Text::Editor::Vip::Buffer is implemented by this package. This package automatically extends a Text::Editor::Vip::Buffer when a Text::Editor::Vip::Buffer instance is created.
This package manipulated the data structures used to implement a do, undo and redo functionality. Text::Editor::Vip uses perl as it building block to implement such functionality. Perl "scripts" are the base for implementing this functionality.
<<lessThe do, undo, redo functionality of Text::Editor::Vip::Buffer is implemented by this package. This package automatically extends a Text::Editor::Vip::Buffer when a Text::Editor::Vip::Buffer instance is created.
This package manipulated the data structures used to implement a do, undo and redo functionality. Text::Editor::Vip uses perl as it building block to implement such functionality. Perl "scripts" are the base for implementing this functionality.
Download (0.052MB)
Added: 2006-10-23 License: Perl Artistic License Price:
1098 downloads
Text Text Revolution 0.11
Text Text Revolution project is a text-based ncurses DDR clone. more>>
Text Text Revolution project is a text-based ncurses DDR clone.
Text Text Revolution is a text-based Dance Dance Revolution clone.
It supports pyDDRs .step file format (which has now been superceeded by the .dance format), and plans to stream OGG, MP3, or WAV files.
Enhancements:
- Joystick (DDR mat) support is working now. use the -j switch. Its currently hardcoded to use /dev/input/js0.
- Some graphics code was cleaned up, and it is now possible to specify the difficulty (--light, --standard, --hard, or -ln, where n is 1, 2, or 3).
<<lessText Text Revolution is a text-based Dance Dance Revolution clone.
It supports pyDDRs .step file format (which has now been superceeded by the .dance format), and plans to stream OGG, MP3, or WAV files.
Enhancements:
- Joystick (DDR mat) support is working now. use the -j switch. Its currently hardcoded to use /dev/input/js0.
- Some graphics code was cleaned up, and it is now possible to specify the difficulty (--light, --standard, --hard, or -ln, where n is 1, 2, or 3).
Download (0.044MB)
Added: 2006-12-08 License: GPL (GNU General Public License) Price:
1054 downloads
VEE, Vim Editor Embedded 3.2 beta
VEE, Vim Embedded Editor is the sum of VIM and X-Terminal and is written by python language. more>>
VEE, Vim Embedded Editor is the sum of VIM and X-Terminal and is written by python language, pygtk binding, vte python modules and is tightly integrated with GNOME environment.
VEE was started to make a text editor, which was based on the VIM, but now VEE has the (G)VIM and also a X terminal. VEE has a special feature to open VIM, X terminal as a new TAB in notebook.
VEE is tightly integrated with GNOME, so without under GNOME environment VEE will not be correctly worked.
Main features:
- support (G)VIM and X terminal
- open the (G)VIM and X terminal as a new TAB in notebook.
- simultaneously increase or decrease the size of font.
- DND(Drag & Drop).
- You can drop down the file to VEE in GNOME desktop
- external terminal can be executed in VEE as a new tab.
- open file outside VEE, with veet.
- can be stored the tab state in bookmark
<<lessVEE was started to make a text editor, which was based on the VIM, but now VEE has the (G)VIM and also a X terminal. VEE has a special feature to open VIM, X terminal as a new TAB in notebook.
VEE is tightly integrated with GNOME, so without under GNOME environment VEE will not be correctly worked.
Main features:
- support (G)VIM and X terminal
- open the (G)VIM and X terminal as a new TAB in notebook.
- simultaneously increase or decrease the size of font.
- DND(Drag & Drop).
- You can drop down the file to VEE in GNOME desktop
- external terminal can be executed in VEE as a new tab.
- open file outside VEE, with veet.
- can be stored the tab state in bookmark
Download (2.8MB)
Added: 2005-08-12 License: GPL (GNU General Public License) Price:
1534 downloads
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.
<<lessIt 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.
Download (0.11MB)
Added: 2007-01-22 License: GPL (GNU General Public License) Price:
1005 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above text editors search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed