Update manpages to not contain contain so many formatting workarounds
[tig] / tigrc.5.txt
1 tigrc(5)
2 ========
3
4 NAME
5 ----
6 tigrc - tig user configuration file
7
8
9 SYNOPSIS
10 --------
11 [verse]
12 .............................................................................
13 *set*   'variable' *=* 'value'
14 *bind*  'keymap' 'key' 'action'
15 *color* 'area' 'fgcolor' 'bgcolor' '[attributes]'
16 .............................................................................
17
18
19 DESCRIPTION
20 -----------
21
22 You can permanently set an option by putting it in the `~/.tigrc` file.  The
23 file consists of a series of 'commands'.  Each line of the file may contain
24 only one command.
25
26 The hash mark ('#') is used as a 'comment' character. All text after the
27 comment character to the end of the line is ignored. You can use comments to
28 annotate your initialization file.
29
30
31 Set command
32 -----------
33
34 A few selective variables can be configured via the set command. The syntax
35 is:
36
37 [verse]
38 ..............................................................................
39 *set* variables *=* value
40 ..............................................................................
41
42 Examples:
43
44 --------------------------------------------------------------------------
45 set show-rev-graph = yes        # Show revision graph?
46 set line-number-interval = 5    # Interval between line numbers
47 set tab-size = 8                # Number of spaces per tab
48 set encoding = "UTF-8"          # Commit encoding
49 --------------------------------------------------------------------------
50
51 The type of variables are either bool, int, and string.
52
53 Valid bool values::
54
55         To set a bool variable to true use either "1", "true", or "yes".
56         Any other value will set the variable to false.
57
58 Valid int values::
59
60         A non-negative integer.
61
62 Valid string values::
63
64         A string of characters. Optionally, use either ' or " as delimiters.
65
66 Variables
67 ~~~~~~~~~
68
69 The following variables can be set:
70
71 'show-rev-graph' (bool)::
72
73         Show revision graph in the main view on start-up. Can be toggled with
74         'g'.
75
76 'line-number-interval' (int)::
77
78         Interval between line numbers. Note, you have to toggle on line
79         numbering with 'n' or the `-n` command line option.  The default is to
80         number every line.
81
82 'tab-size' (int)::
83
84         Number of spaces per tab. The default is 8 spaces.
85
86 'commit-encoding' (string)::
87
88         The encoding used for commits. The default is UTF-8. Not this option
89         is shadowed by the "i18n.commitencoding" option in `.git/config`.
90
91
92 Bind command
93 ------------
94
95 Using bind commands keys can be mapped to an action when pressed in a given
96 key map. The syntax is:
97
98 [verse]
99 ..............................................................................
100 *bind* 'keymap' 'key' 'action'
101 ..............................................................................
102
103 Examples:
104
105 --------------------------------------------------------------------------
106 # A few keybindings
107 bind main w scroll-line-up
108 bind main s scroll-line-down
109 bind main space enter
110 bind diff a previous
111 bind diff d next
112 bind diff b move-first-line
113 # 'unbind' the default quit key binding
114 bind main Q none
115 # An external command to update from upstream
116 bind generic F !git fetch
117 # Cherry-pick current commit unto current branch
118 bind generic C !git cherry-pick %(commit)
119 --------------------------------------------------------------------------
120
121 Keys are mapped by first searching the keybindings for the current view, then
122 the keybindings for the *generic* keymap, and last the default keybindings.
123 Thus, the view keybindings shadow the generic keybindings which Shadow the
124 built-in keybindings.
125
126 --
127
128 Keymaps::
129
130 Valid keymaps are: *main*, *diff*, *log*, *help*, *pager*, *status*, *stage*,
131 and *generic*.  Use *generic* to set key mapping in all keymaps.
132
133 Key values::
134
135 Key values should never be quoted. Use either the ASCII value or one of the
136 following symbolic key names. Symbolic key names are case insensitive, Use
137 *Hash* to bind to the `#` key, since the hash mark is used as a comment
138 character.
139
140 *Enter*, *Space*, *Backspace*, *Tab*, *Escape*, *Left*, *Right*, *Up*, *Down*,
141 *Insert*, *Delete*, *Hash*, *Home*, *End*, *PageUp*, *PageDown*, *F1*, *F2*, *F3*,
142 *F4*, *F5*, *F6*, *F7*, *F8*, *F9*, *F10*, *F11*, *F12*.
143
144 Action names::
145
146 Valid action names are described below. Note, all names are
147 case-insensitive, and you may use '-', '_', and '.' interchangeably,
148 e.g. "view-main", "View.Main", and "VIEW_MAIN" are the same.
149
150 --
151
152 Actions
153 ~~~~~~~
154
155 Apart from the action names listed below, all actions starting with a '!' will
156 be available as an external command. External commands can contain variable
157 names that will be substituted before the command is run. Valid variable names
158 are "%(head)", "%(commit)", and "%(blob)".
159
160 As an example, the following external command will save the current commit as
161 a patch file: "!git format-patch %(commit)^..%(commit)".
162
163 ifdef::backend-xhtml11[]
164 [frame="none"]
165 `-----------------------`-----------------------------------------------------
166 endif::backend-xhtml11[]
167 View switching:
168 ------------------------------------------------------------------------------
169 view-main               Show main view
170 view-diff               Show diff view
171 view-log                Show log view
172 view-tree               Show tree view
173 view-blob               Show blob view
174 view-status             Show status view
175 view-stage              Show stage view
176 view-pager              Show pager view
177 view-help               Show help page
178 ------------------------------------------------------------------------------
179
180 ifdef::backend-xhtml11[]
181 [frame="none"]
182 `-----------------------`-----------------------------------------------------
183 endif::backend-xhtml11[]
184 View manipulation:
185 ------------------------------------------------------------------------------
186 enter                   Enter current line and scroll
187 next                    Move to next
188 previous                Move to previous
189 view-next               Move focus to next view
190 refresh                 Reload and refresh view
191 view-close              Close the current view
192 quit                    Close all views and quit
193 ------------------------------------------------------------------------------
194
195 ifdef::backend-xhtml11[]
196 [frame="none"]
197 `-----------------------`-----------------------------------------------------
198 endif::backend-xhtml11[]
199 Cursor navigation:
200 ------------------------------------------------------------------------------
201 move-up                 Move cursor one line up
202 move-down               Move cursor one line down
203 move-page-down          Move cursor one page down
204 move-page-up            Move cursor one page up
205 move-first-line         Move cursor to first line
206 move-last-line          Move cursor to last line
207 ------------------------------------------------------------------------------
208
209 ifdef::backend-xhtml11[]
210 [frame="none"]
211 `-----------------------`-----------------------------------------------------
212 endif::backend-xhtml11[]
213 Scrolling:
214 ------------------------------------------------------------------------------
215 scroll-line-up          Scroll one line up
216 scroll-line-down        Scroll one line down
217 scroll-page-eup         Scroll one page up
218 scroll-page-down        Scroll one page down
219 ------------------------------------------------------------------------------
220
221 ifdef::backend-xhtml11[]
222 [frame="none"]
223 `-----------------------`-----------------------------------------------------
224 endif::backend-xhtml11[]
225 Searching:
226 ------------------------------------------------------------------------------
227 search                  Search the view
228 search-back             Search backwards in the view
229 find-next               Find next search match
230 find-prev               Find previous search match
231 ------------------------------------------------------------------------------
232
233 ifdef::backend-xhtml11[]
234 [frame="none"]
235 `-----------------------`-----------------------------------------------------
236 endif::backend-xhtml11[]
237 Misc:
238 ------------------------------------------------------------------------------
239 none                    Do nothing
240 prompt                  Bring up the prompt
241 screen-redraw           Redraw the screen
242 screen-resize           Resize the screen
243 show-version            Show version information
244 stop-loading            Stop all loading views
245 toggle-lineno           Toggle line numbers
246 toggle-rev-graph        Toggle revision graph visualization
247 status-update           Update file status
248 status-merge            Resolve unmerged file
249 tree-parent             Switch to parent directory in tree view
250 edit                    Open in editor
251 ------------------------------------------------------------------------------
252
253
254 Color command
255 -------------
256
257 Color commands control highlighting and the user interface styles. If your
258 terminal supports color, these commands can be used to assign foreground and
259 background combinations to certain areas. Optionally, an attribute can be given
260 as the last parameter. The syntax is:
261
262 [verse]
263 ..............................................................................
264 *color* 'area' 'fgcolor' 'bgcolor' '[attributes]'
265 ..............................................................................
266
267 Examples:
268
269 ------------------------------------------------------------------------------
270 # Diff colors
271 color diff-header       yellow  default
272 color diff-index        blue    default
273 color diff-chunk        magenta default
274 # A strange looking cursor line
275 color cursor            red     default underline
276 # UI colors
277 color title-blur        white   blue
278 color title-focus       white   blue    bold
279 ------------------------------------------------------------------------------
280
281 Area names::
282
283         Valid area names are described below. Note, all names are
284         case-insensitive, and you may use '-', '_', and '.' interchangeably,
285         e.g. "Diff-Header", "DIFF_HEADER", and "diff.header" are the same.
286
287 Color names::
288
289         Valid colors include: *white*, *black*, *green*, *magenta*, *blue*,
290         *cyan*, *yellow*, *red*, *default*. Use *default* to refer to the
291         default terminal colors.
292
293 Attribute names::
294
295         Valid attributes include: *normal*, *blink*, *bold*, *dim*, *reverse*,
296         *standout*, and *underline*. Note, not all attributes may be supported
297         by the terminal.
298
299
300 UI colors
301 ~~~~~~~~~
302
303 --
304
305 Status window colors::
306
307 Appearance of the bottom window showing info messages.
308
309 *status*
310
311 Title window colors::
312
313 Appearance of the title windows when they are attached
314 to any backgrounded windows and the current window.
315
316 *title-blur*, *title-focus*
317
318 Cursor line colors::
319
320 *cursor*
321
322 Main view specific::
323
324 Appearance of the various columns in the main view, including the '~' used for
325 delimiting long author names and labels for tag and branch references.
326
327 *main-date*, *main-author*, *main-commit*, *main-delim*, *main-tag*,
328 *main-ref*, *main-remote*, *main-revgraph*
329
330 --
331
332 Highlighting
333 ~~~~~~~~~~~~
334
335 The colors and attributes for text that is not highlighted can be controlled
336 by changing the *default* color option.
337
338 --
339
340 Diff markup::
341
342 Options concerning diff start, chunks and lines added and deleted.
343
344 *diff-header*, *diff-chunk*, *diff-add*, *diff-del*
345
346 Enhanced git diff markup::
347
348 Extra diff information emitted by the git diff machinery, such as mode
349 changes, rename detection, and similarity.
350
351 *diff-oldmode*, *diff-newmode*, *diff-copy-from*, *diff-copy-to*,
352 *diff-rename-from*, *diff-rename-to*, *diff-similarity*, *diff-dissimilarity*
353 *diff-tree*, *diff-index*
354
355 Pretty print commit headers::
356
357 Commit diffs and the revision logs are usually formatted using pretty printed
358 headers , unless `--pretty=raw` was given. This includes lines, such as merge
359 info, commit ID, and author and committer date.
360
361 *pp-author*, *pp-commit*, *pp-merge*, *pp-date*, *pp-adate*, *pp-cdate*,
362 *pp-refs*
363
364 Raw commit header::
365
366 Usually shown when `--pretty=raw` is given, however 'commit' is pretty much
367 omnipresent.
368
369 *commit*, *parent*, *tree*, *author*, *committer*
370
371 Commit message::
372
373 For now only `Signed-off-by` and `Acked-by` lines are colorized.
374
375 *signoff*, *acked*
376
377 Tree markup::
378
379 Colors for information of the tree view.
380
381 *tree-dir*, *tree-file*
382
383 Status markup::
384
385 Colors used in the status view.
386
387 *stat-section*, *stat-none*, *stat-staged*, *stat-unstaged*, *stat-untracked*
388
389 --
390
391 COPYRIGHT
392 ---------
393 Copyright (c) 2006-2007 Jonas Fonseca <fonseca@diku.dk>
394
395 Licensed under the terms of the GNU General Public License.
396
397 SEE ALSO
398 --------
399 gitlink:tig[1] and the http://jonas.nitro.dk/tig/manual.html[tig manual].