diff --git a/doc/terminator.1 b/doc/terminator.1 index 11aaf080..404c63de 100644 --- a/doc/terminator.1 +++ b/doc/terminator.1 @@ -57,28 +57,37 @@ Split terminals H\fBo\fRrizontally. Split terminals V\fBe\fRrtically. .TP .B Ctrl+Shift+Right -Move parent handle \fBRight\fR. +Move parent dragbar \fBRight\fR. .TP .B Ctrl+Shift+Left -Move parent handle \fBLeft\fR. +Move parent dragbar \fBLeft\fR. .TP .B Ctrl+Shift+Up -Move parent handle \fBUp\fR. +Move parent dragbar \fBUp\fR. .TP .B Ctrl+Shift+Down -Move parent handle \fBDown\fR. +Move parent dragbar \fBDown\fR. .TP .B Ctrl+Shift+S Hide/Show \fBS\fRcrollbar. .TP -.B Ctrl+Shift+N +.B Ctrl+Shift+F +Search within terminal scrollback +.TP +.B Ctrl+Shift+N or Ctrl+Tab Move to \fBn\fRext terminal within the same tab, use Ctrl+PageDown to move to the next tab. If \fBcycle_term_tab\fR is \fBFalse\fR, cycle within the same tab will be disabled .TP -.B Ctrl+Shift+P +.B Ctrl+Shift+P or Ctrl+Shift+Tab Move to \fBp\fRrevious terminal within the same tab, use Ctrl+PageUp to move to the previous tab. If \fBcycle_term_tab\fR is \fBFalse\fR, cycle within the same tab will be disabled .TP +.B Ctrl+Shift+C +Copy selected text to clipboard +.TP +.B Ctrl+Shift+V +Paste clipboard text +.TP .B Ctrl+Shift+W Close the current terminal. .TP @@ -94,6 +103,9 @@ Toggle between showing all terminals and only showing a scaled version of the cu .B Ctrl+Shift+T Open new \fBt\fRab .TP +.B Ctrl+Shift+Alt+T +Open new \fBt\fRab at root level, if using \fBextreme_tabs\fR. +.TP .B Ctrl+PageDown Move to next Tab .TP @@ -115,8 +127,8 @@ Increase font size. \fBNote:\fP this may require you to press shift, depending o .B Ctrl+Minus (-) Decrease font size. \fBNote:\fP this may require you to press shift, depending on your keyboard .TP -.B Ctrl+Equals (=) -Restore font size to original setting. \fBNote:\fP this may require you to press shift, depending on your keyboard +.B Ctrl+Zero (0) +Restore font size to original setting. .TP .B F11 Toggle fullscreen diff --git a/doc/terminator_config.5 b/doc/terminator_config.5 index 2874fbac..74379136 100644 --- a/doc/terminator_config.5 +++ b/doc/terminator_config.5 @@ -7,9 +7,20 @@ This manual page documents briefly the .B Terminator config file. .PP \fBterminator/config\fP is an optional file to configure the terminator terminal emulator. It is used to control options not in gnome-terminal gconf profiles, or override gconf settings. +.SH "FILE FORMAT" +This is what a Terminator config file should look like: + + font = Fixed 10 + background_color = #000000 + foreground_color = #FFFFFF + scrollback_lines = 500 + cursor_blink = True + + [keybindings] + full_screen = F11 -The options can be defined one per line in the form: \fBOPTION = VALUE\fR. .SH "OPTIONS" +These are the options Terminator currently supports: .TP .B allow_bold\fR (boolean) If true, allow applications in the terminal to make text boldface. @@ -179,5 +190,111 @@ Default value: \fBFalse\fR .B try_posix_regexp \fB(boolean)\fR If set to True, URL matching regexps will try to use POSIX style first, and fall back on GNU style on failure. If you are on Linux but URL matches don't work, try setting this to True. If you are not on Linux, but you get VTE warnings on startup saying "Error compiling regular expression", set this to False to silence them (they are otherwise harmless). Default value: \fBFalse\fR on Linux, \fBTrue\fR otherwise. +.SH "KEYBINDINGS" +The following actions can have their keyboard shortcut configured in the config file in a section labelled \fB[keybindings]\fR: +.TP +.B zoom_in +Make font one unit larger. +Default value: \fBplus\fR +.TP +.B zoom_out +Make font one unit smaller. +Default value: \fBminue\fR +.TP +.B zoom_normal +Return font to pre-configured size. +Default value: \fB0\fR +.TP +.B new_tab +Open a new tab. +Default value: \fBT\fR +.TP +.B new_root_tab +Open a new tab at the root of the window (only useful if you use the \fBextreme_tabs\fR option). +Default value: \fBT\fR +.TP +.B go_next +Move cursor focus to the next tab. +Default values: \fBN\fR and \fBTab\fR +.TP +.B go_prev +Move cursor focus to the previous tab. +Default values: \fBP\fR and \fBTab\fR +.TP +.B split_horiz +Split the current terminal horizontally. +Default value: \fBO\fR +.TP +.B split_vert +Split the current terminal vertically. +Default value: \fBE\fR +.TP +.B close_term +Close the current terminal. +Default value: \fBW\fR +.TP +.B copy +Copy the currently selected text to the clipboard. +Default value: \fBC\fR +.TP +.B paste +Paste the current contents of the clipboard. +Default value: \fBV\fR +.TP +.B toggle_scrollbar +Show/Hide the scrollbar. +Default value: \fBS\fR +.TP +.B search +Search for text in the terminal scrollback history. +Default value: \fBF\fR +.TP +.B close_window +Quit Terminator. +Default value: \fBQ\fR +.TP +.B resize_up +Move the parent dragbar upwards. +Default value: \fBUp\fR +.TP +.B resize_down +Move the parent dragbar downwards. +Default value: \fBDown\fR +.TP +.B resize_left +Move the parent dragbar left. +Default value: \fBLeft\fR +.TP +.B resize_right +Move the parent dragbar right. +Default value: \fBRight\fR +.TP +.B move_tab_right +Swap the current tab with the one to its right. +Default value: \fBPage_Down\fR +.TP +.B move_tab_left +Swap the current tab with the one to its left. +Default value: \fBPage_Up\fR +.TP +.B toggle_zoom +Zoom/Unzoom the current terminal to fill the window. +Default value: \fBX\fR +.TP +.B scaled_zoom +Zoom/Unzoom the current terminal to fill the window, and scale its font. +Default value: \fBZ\fR +.TP +.B next_tab +Move to the next tab. +Default value: \fBPage_Down\fR +.TP +.B prev_tab +Move to the previous tab. +Default value: \fBPage_Up\fR +.TP +.B full_screen +Toggle the window to a fullscreen window. +Default value: \fBF11\fR .SH "SEE ALSO" .BR gnome\-terminal(1)