termite/README.rst

60 lines
1.8 KiB
ReStructuredText
Raw Normal View History

2012-05-22 09:33:36 +02:00
A simple VTE-based terminal.
2012-06-08 03:14:22 +02:00
Termite looks for ``termite.cfg`` in ``$XDG_CONFIG_HOME`` (or ``~/.config`` if
unset) and then falls back to ``$XDG_CONFIG_DIRS``.
2012-05-23 11:34:02 +02:00
2012-05-23 10:31:25 +02:00
DEPENDENCIES
============
A vte version >= 0.30. A patch is currently required to expose the
2012-07-07 06:11:48 +02:00
functions needed for keyboard selection.
2012-05-23 10:31:25 +02:00
2012-05-22 10:59:57 +02:00
KEYBINDINGS
===========
* ``ctrl-shift-escape``: reload configuration file
2012-05-23 20:07:47 +02:00
* ``ctrl-shift-c``: copy to CLIPBOARD
* ``ctrl-shift-v``: paste from CLIPBOARD
2012-05-25 08:16:41 +02:00
* ``ctrl-shift-u``: unicode input (standard GTK binding)
2012-06-07 04:12:08 +02:00
* ``ctrl-tab``: start scrollback completion
* ``ctrl-shift-space``: start selection mode
2012-06-07 04:12:08 +02:00
2012-06-07 21:50:58 +02:00
During scrollback search, the current selection is changed to the search match
2012-06-07 04:12:08 +02:00
and copied to the PRIMARY clipboard buffer.
2012-07-05 07:23:08 +02:00
With the scrollback search/completion widget open, up/down cycle through
completions, escape closes the widget and enter accepts the input.
2012-05-30 13:14:08 +02:00
TEXT SELECTION MODE
-------------------
* ``escape``: deactivate selection mode
2012-07-05 08:56:28 +02:00
* ``v``: visual mode
2012-07-07 02:38:46 +02:00
* ``V``: visual line mode
2012-07-07 05:03:06 +02:00
* ``ctrl-v``: visual block mode
2012-07-05 23:37:10 +02:00
* ``h``/``j``/``k``/``l`` or arrow keys: move cursor left/down/up/right
* ``$``: end-of-line
* ``^``: beginning-of-line
* ``g``: jump to start of first row
* ``G``: jump to start of last row
2012-07-11 08:06:40 +02:00
* ``y``: copy to CLIPBOARD
2012-07-11 09:35:38 +02:00
* ``/``: forward search
* ``?``: reverse search
* ``u``: forward url search
* ``U``: reverse url search
* ``n``: next search match
* ``N``: previous search match
2012-05-30 13:14:08 +02:00
TODO
====
2012-06-06 17:42:15 +02:00
* tab and shift-tab bindings for completion
2012-06-04 21:27:15 +02:00
* better url matching regex
* hint mode overlay for urls (like elinks/vimperator/pentadactyl)
2012-05-31 15:43:03 +02:00
* scrollback search needs to be improved upstream [1]_
2012-06-25 07:12:25 +02:00
* expose keybindings in ``termite.cfg``
2012-07-08 07:08:21 +02:00
* text selection needs to be extended with more bindings
2012-07-11 09:25:01 +02:00
* output should be paused while in selection mode
2012-07-06 05:13:26 +02:00
2012-05-31 15:43:03 +02:00
.. [1] https://bugzilla.gnome.org/show_bug.cgi?id=627886