1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00
cdt/plugins/org.eclipse.tm.terminal
Martin Oberhuber 584a99aecd Terminal: Bug 434939 - Keybinding conflicts when installing into JEE
The "Alt+V" key binding reported an error when installed into the
Eclipse JEE package. This is resolved by making our TerminalContext
a child of the Eclipse Window context.

At the same time, provide better human-readable labels for the Terminal
Edit Context (menu on Terminal Widget) and Terminal Typing Context.
And, register more Alt+Char key bindings after carefully reviewing
existing Eclipse Main Menus, shortcuts and expected readline support.

Change-Id: I91c932cce428f7a7a3fa829d7776baa135474330
Signed-off-by: Martin Oberhuber <martin.oberhuber@windriver.com>
2014-05-17 00:02:44 +02:00
..
.settings Bug 434294 - [terminal] Make Mac COMMAND key to always act locally 2014-05-09 13:14:09 +02:00
icons Bug 393487 - [terminal][releng] Reorganize terminal feature set separating the legacy terminal view 2012-11-06 11:39:12 +01:00
META-INF Terminal: Added method to control if the terminal control tries to 2014-03-27 13:22:27 +01:00
schema Bug 393487 - [terminal][releng] Reorganize terminal feature set separating the legacy terminal view 2012-11-06 11:39:12 +01:00
src/org/eclipse/tm Terminal: Bug 434939 - Keybinding conflicts when installing into JEE 2014-05-17 00:02:44 +02:00
.classpath Bug 393487 - [terminal][releng] Reorganize terminal feature set separating the legacy terminal view 2012-11-06 11:39:12 +01:00
.cvsignore Bug 393487 - [terminal][releng] Reorganize terminal feature set separating the legacy terminal view 2012-11-06 11:39:12 +01:00
.options Bug 393487 - [terminal][releng] Reorganize terminal feature set separating the legacy terminal view 2012-11-06 11:39:12 +01:00
.project Bug 393487 - [terminal][releng] Reorganize terminal feature set separating the legacy terminal view 2012-11-06 11:39:12 +01:00
about.html Bug 393487 - [terminal][releng] Reorganize terminal feature set separating the legacy terminal view 2012-11-06 11:39:12 +01:00
about.ini Bug 393487 - [terminal][releng] Reorganize terminal feature set separating the legacy terminal view 2012-11-06 11:39:12 +01:00
about.mappings Bug 393487 - [terminal][releng] Reorganize terminal feature set separating the legacy terminal view 2012-11-06 11:39:12 +01:00
about.properties [408157] update copyright years in about files 2013-05-20 12:12:19 -05:00
build.properties Bug 393487 - [terminal][releng] Reorganize terminal feature set separating the legacy terminal view 2012-11-06 11:39:12 +01:00
HelpContexts.xml Bug 393487 - [terminal][releng] Reorganize terminal feature set separating the legacy terminal view 2012-11-06 11:39:12 +01:00
plugin.properties Terminal: Bug 434939 - Keybinding conflicts when installing into JEE 2014-05-17 00:02:44 +02:00
plugin.xml Terminal: Bug 434939 - Keybinding conflicts when installing into JEE 2014-05-17 00:02:44 +02:00
pom.xml Terminal: Added method to control if the terminal control tries to 2014-03-27 13:22:27 +01:00
README.txt [releng]Forcefully updating last modification date to get build qualifier updated for terminal and examples. 2014-03-10 18:49:18 +03:00
tm32.png Bug 393487 - [terminal][releng] Reorganize terminal feature set separating the legacy terminal view 2012-11-06 11:39:12 +01:00

Terminal README
===============

The Terminal is a UI-less model of a grid of characters,
plus an SWT widget that's updated asynchronously for 
maximum performance. The widget can be hooked up to various
ITerminalConnectors providing an InputStream, OutputStream,
and a method for setting the Terminal Size.

The widget processes ANSI control characters, including NUL,
backspace, carriage return, linefeed, and a subset of ANSI
escape sequences sufficient to allow use of screen-oriented
applications, such as vi, Emacs, and any GNU readline-enabled
application (Bash, bc, ncftp, etc.).

This is not yet a fully compliant vt100 / vt102 terminal 
emulator!