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