termite/README.rst

50 lines
1.5 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
2012-07-11 09:46:27 +02:00
* ``ctrl-shift-space``: start command mode
2012-06-07 04:12:08 +02:00
2012-07-11 09:46:27 +02:00
COMMAND MODE
-------------------
2012-07-11 09:46:27 +02:00
* ``escape``: deactivate command 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
2012-08-14 22:57:07 +02:00
* ``w``/``b``: forward/backward word
* ``$``: 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
* ``o``: open the current selection as a url
* ``Return``: open the current selection as a url and exit command mode
2012-07-11 09:35:38 +02:00
* ``n``: next search match
* ``N``: previous search match
2012-07-11 09:46:27 +02:00
During scrollback search, the current selection is changed to the search match
and copied to the PRIMARY clipboard buffer.
With the scrollback search/completion widget open, up/down cycle through
completions, escape closes the widget and enter accepts the input.