GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
FNC(1) FreeBSD General Commands Manual FNC(1)

fnc
Read-only ncurses-based Fossil repository browser

fnc [command] [-h | --help]

fnc [-h | --help] [-v | --version]

fnc config [-hu] [--ls] [-R path] [setting [value]]

fnc timeline [-Cz] [-b branch] [-c commit] [-f glob] [-n number] [-R path] [-T tag] [-t type] [-u user] [path]

fnc diff [-CilPqsWw] [-R path] [-x number] [artifact1 [artifact2]] [path ...]

fnc tree [-C] [-c commit] [-R path] [path]

fnc blame [-C] [-c commit [-r]] [-n number] [-R path] path

fnc branch [-Ccopr] [-a date | -b date] [-R path] [-s order] [glob]

fnc [path]

fnc is an interactive read-only browser for fossil(1) repositories, and supports multiple views to display repository data:
Timeline view
Display commits from the repository's history in chronologically descending order. If no command or arg are specified, or just a path is passed, fnc will default to displaying this view.
Diff view
Display changes introduced in the specified commit, or between two repository artifacts.
Tree view
Display navigable tree reflecting the repository state as at the specified commit.
Blame view
Display and annotate each line in the given file with the hyperlinked historical version that last modified the line.
Branch view
Display navigable list of all repository branches.

fnc provides both global and command-specific options and in-app key bindings. Global options are as follows:

, --help
Display program help and usage information then exit.
, --repo path
Use the fossil(1) repository database at the specified path for the current fnc session. See command specific options for details.
, --version
Display program version then exit.

Note that any global options preceding a command name will be interpreted as the command-specific variant if such an option exists.

Global key bindings are as follows:

Display in-app help.
Switch focus between open views.
Toggle the active view between fullscreen and splitscreen mode. Note that fnc will open nested views in splitscreen mode if the terminal window is equal to or greater than 110 columns wide.
Immediatey quit fnc.
Quit the active view.

Commands available to fnc are as follows:

[-h | --help] [--ls] [-R | --repo path] [setting [value | --unset]]
(aliases: conf, cfg, settings, set)
Retrieve the current, or set a new, value for setting in the local repository. When specified, value will become the new value for setting, otherwise fnc will display the current value of setting. With no arguments, fnc config will display a list of all configurable settings. Alternatively, see ENVIRONMENT for a detailed list of available settings used in the display or processing of data. When no value is found for a given setting in the local repository, environment variables will be searched. If still not found, default values will be used. Unless the --repo option is used, this command must be executed from within the repository hierarchy; that is, fnc assumes a local checkout is open in or above the current working directory. Options for fnc config are as follows:
, --help
Display config command help and usage information then exit.
List all currently defined settings.
, --repo path
Use the fossil(1) repository database at the specified path for the current fnc config invocation.
, --unset
Clear the specified setting.
[-C | --no-colour] [-T | --tag tag] [-b | --branch branch] [-c | --commit commit] [-f | --filter glob] [-h | --help] [-n | --limit n] [-R | --repo path] [-t | --type type] [-u | --username user] [-z | --utc] [path]
(aliases: log, tl, time, ti)
Display commit history of a repository. If path is specified, only commits that modified the file(s) at this path will populate the timeline. The path may be absolute, relative to the current working directory, or relative to the repository root. Unless the --repo option is used, this command must be executed from within the repository hierarchy; that is, fnc assumes a local checkout is open in or above the current working directory.

If no command is explicitly specified, this command will be executed by default.

Options for fnc timeline are as follows:

, --branch branch
Display commits that are members of the specified branch. The expected argument is a glob of the symbolic name of a branch, with the most recent branch to match being selected. Pattern matching is case-insensitive unless branch has at least one uppercase character, in which case the search will be case-sensitive. By default, fnc will display all commits irrespective of the branch on which they reside.
, --no-colour
Disable colourised timeline, which is enabled by default on supported terminals. If this option is not used, colour can be toggled with the c timeline view key binding as documented below. User-defined colours are also supported, see ENVIRONMENT for details.
, --commit commit
Open the timeline from the check-in identified by commit. The expected argument is either the name of a branch, which will resolve to the latest commit on the given branch, or (a unique abbreviated prefix of) a valid commit UUID SHA1 or SHA3 hash. When this option is not supplied, fnc will open the timeline to the latest leaf on the repository tree. For a complete list of valid arguments this option accepts, see Fossil's Check-in Names.
, --filter glob
Filter timeline by commits containing glob in any of the commit comment, user, or branch fields. Pattern matching is case-insensitive unless glob has at least one uppercase character, in which case the search will be case-sensitive. Filtering can also be performed in-session with the F timeline view key binding as documented below.
, --help
Display timeline command help and usage information then exit.
, --limit n
Limit timeline to the latest n commits. By default, fnc will load the entire history of the repository's local checkout. Negative values are a no-op.
, --repo path
Use the fossil(1) repository database at the specified path for the current fnc timeline invocation. When this option is used, the checkout-related Fossil special tags “current”, “prev”, and “next” are invalid arguments to the --commit option. When --commit is not specified, fnc will default to populating the timeline from the latest commit.
, --tag tag
Only display commits with T cards containing tag. The expected argument is a glob of a commit manifest's T card argument, with the most recent tag to match being selected. Pattern matching is case-insensitive unless tag has at least one uppercase character, in which case the search will be case-sensitive. By default, fnc will indiscriminately display all commits irrespective of which T cards are attached to the commit manifest.
, --type type
Only display type commits. Valid type values are as follows:
ci check-in
w wiki
t ticket
e technote
f forum post
g tag artifact

By default, when this option is not supplied, fnc will indiscriminately load all commits irrespective of type. Note that this is a repeatable flag (e.g., fnc timeline -t e -t t).

, --username user
Only display commits authored by user. The search is case-insensitive by default unless user contains at least one uppercase character, in which case the search will be case-sensitive.
, --utc
Use Coordinated Universal Time (UTC) rather than local time when displaying commit dates and timestamps.

Key bindings for fnc timeline are as follows:

Move selection cursor down the timeline.
Move selection cursor up the timeline.
Scroll timeline view one page downwards in the buffer.
Scroll timeline view one page upwards in the buffer.
Scroll timeline view half a page downwards in the buffer.
Scroll timeline view half a page upwards in the buffer.
Move selection cursor to the last commit on the timeline (i.e., oldest commit in the repository).
Move selection cursor to the first commit on the timeline (i.e., newest commit in the repository).
Open a diff view displaying the changeset of the currently selected commit.
(Un)tag the currently selected commit as the base commit for the next tagged commit to be diffed against. If another commit is already tagged, show the changes between it and the selected commit.
Open and populate branch view with all repository branches.
Diff local changes on disk in the current checkout against the selected commit.
Toggle colourised timeline. On supported terminals, fnc will default to displaying the timeline in colour.
Prompt to enter a search term to filter a new timeline view by commits with comment, user, or branch fields that match the entered pattern. If no commits match, a message is displayed on screen.
Display the tree of the repository corresponding to the currently selected commit.
Prompt to enter a search term to begin searching for commits matching the pattern provided. The search term is an extended regular expression, which is cross-referenced against a commit's comment, the username of its author, branch, and UUID SHA1 or SHA3 hash. See re_format(7) for regular expression syntax.
Find the next commit that matches the current search term. The search will continue until either a match is found or the earliest commit on the timeline is consumed.
Find the previous commit that matches the current search term. The search will continue until either a match is found or the latest commit on the timeline is consumed.
Cancel the current search or timeline traversal (i.e., /, G, or End).
[-C | --no-colour] [-h | --help] [-i | --invert] [-l | --line-numbers] [-P | --no-prototype] [-q | --quiet] [-R | --repo path] [-s | --sbs] [-W | --whitespace-eol] [-w | --whitespace] [-x | --context n] [artifact1 [artifact2]] [path ...]
(alias: di)
Display the differences between two repository artifacts, or between the local changes on disk and a given commit. If neither artifact1 nor artifact2 are specified, fnc will diff the local changes on disk against the version on which the current checkout is based. If only artifact1 is specified, fnc will diff the current checkout, including any local changes on disk, against this version. When both arguments are specified, the changes between these two versions will be displayed. If supplied, fnc will filter diffs between commits by path so that only changes involving the file(s) identified are displayed. Paths may be absolute, relative to the current working directory, or relative to the repository root. Both artifact1 and artifact2 must be of the same type, which is expected to be either a symbolic check-in name, tag, (unique abbreviated prefix of) a commit or blob artifact UUID SHA1 or SHA3 hash, or an ISO 8601 formatted date. Both artifact arguments must be supplied when diffing blobs; any following non-option arguments are invalid and will be ignored. Unless the --repo option is used, this command must be executed from within the repository hierarchy; that is, fnc assumes a local checkout is open in or above the current working directory.

Options for fnc diff are as follows:

, --no-colour
Disable coloured diff output, which is enabled by default on supported terminals. If this option is not used, colour can be toggled with the c diff view key binding as documented below. User-defined colours are also supported, see ENVIRONMENT for details.
, --help
Display diff command help and usage information then exit.
, --invert
Invert the difference between artifacts when displaying the diff.
, --line-numbers
Display file line numbers in diff output. As documented below, this option can be toggled with the L diff view key binding.
, --no-prototype
Disable chunk header display of which function or scope each change is in, which is enabled by default. The heuristic will produce reliable results for all C-like languages (e.g., C/C++, Java, Python, JavaScript, Rust); however, Lisps and non-source code (e.g., Markdown, reStructuredText) will return meaningless results. Function prototype cannot be displayed in the chunk header with either -l|-line-numbers or -s|-sbs formatted diffs. This option can be toggled in-session with the p key binding as documented below.
, --quiet
Disable verbose output; that is, do not output complete content of newly added or deleted files, which are displayed by default. Verbosity can also be toggled with the v key binding as documented below.
, --repo path
Use the fossil(1) repository database at the specified path for the current fnc diff invocation. When this option is used, both artifact1 and artifact2 are required, and the checkout-related Fossil special tags “current”, “prev”, and “next” are invalid artifact operands.
, --sbs
Display a side-by-side formatted diff. As documented below, this option can also be toggled in-session with the s key binding. (Mutually exclusive with -l, --line-numbers)
, --whitespace-eol
Ignore end-of-line whitespace-only changes when displaying the diff.
, --whitespace
Ignore whitespace-only changes when displaying the diff.
, --context n
Set n context lines to be shown in the diff such that 0 ≤ n ≤ 64. By default, 5 context lines are shown. Illegal values are a no-op.

All the above options (sans -h and -R) can be made persistent as global or per-repo settings. See ENVIRONMENT for details.

Key bindings for fnc diff are as follows:

Move the selection cursor down one line.
Move the selection cursor up one line.
Scroll the view two columns to the right in the buffer. Diff output moves left on the screen.
Scroll the view two columns to the left in the buffer. Diff output moves right on the screen.
Scroll the view right to the end of the longest line in the diff.
Scroll the view left to the beginning of the line.
Scroll view one line downwards in the buffer. Diff output moves upwards on the screen.
Scroll view one line upwards in the buffer. Diff output moves downwards on the screen.
Navigate to next file in the diff.
Navigate to previous file in the diff.
Scroll diff view one page downwards in the buffer.
Scroll diff view one page upwards in the buffer.
Scroll diff view half a page downwards in the buffer.
Scroll diff view half a page upwards in the buffer.
Scroll to the end of the view (i.e., last line of diff output).
Scroll to the top of the view (i.e., first line of diff output).
If the diff is derived from a timeline view, move up the timeline to the previous (i.e., newer) commit and display its diff. If the diff is derived from a blame view, display the commit diff of the previous line in the annotated file.
If the diff is derived from a timeline view, move down the timeline to the next (i.e., older) commit and display its diff. If the diff is derived from a blame view, display the commit diff of the next line in the annotated file.
Decrease the number of context lines shown in diff output.
Increase the number of context lines shown in diff output.
Toggle display of diff view line numbers.
Open prompt to enter line number and navigate to that line in the view.
Open and populate branch view with all repository branches.
Toggle coloured diff output. On supported terminals, fnc will default to displaying changes and diff metadata in colour.
Open prompt to enter file number and navigate to that file in the diff.
Toggle inversion of diff output.
Toggle display of file line numbers in the diff.
Write the currently viewed diff to a patch file. fnc will prompt the user for a file path, which must be absolute or relative to the current working directory. If no path is input and the return key is entered, the patch will be written to the current working directory using the first ten characters of the current artifact hash as the filename with a .patch extension.
In the diff chunk header, toggle display of which function each change is in; for example: @@ -2360,10 +2361,11 @@ draw_commits(struct fnc_view *view)
Toggle display of a side-by-side formatted diff.
Toggle verbosity of diff output. By default, fnc will display the entire content of newly added or deleted files.
Toggle whether whitespace-only changes are ignored when comparing lines in the diff.
Prompt to enter a search term to begin searching the diff output for lines matching the pattern provided. The search term is an extended regular expression, which is documented in re_format(7).
Find the next line that matches the current search term.
Find the previous line that matches the current search term.
[-C | --no-colour] [-c | --commit commit] [-h | --help] [-R | --repo path] [path]
(aliases: dir, tr)
Display navigable, hierarchical tree of a repository. If a path is specified, display tree nodes of this path. The path may be absolute, relative to the current working directory, or relative to the repository root. With no options passed, the tree will reflect the state of the latest commit on trunk. Unless the --repo option is used, this command must be executed from within the repository hierarchy; that is, fnc assumes a local checkout is open in or above the current working directory.

Tree nodes are lexicographically ordered and may be postfixed with an identifier corresponding to the mode of the file object on disk as returned by lstat(2):

/ directory
* executable
@ symbolic link

Nodes representing symbolic links are also annotated with the path of the source file.

Options for fnc tree are as follows:

, --no-colour
Disable coloured output, which is enabled by default on supported terminals. If this option is not used, colour can be toggled with the c tree view key binding as documented below. User-defined colours are also supported, see ENVIRONMENT for details.
, --commit commit
The displayed tree will reflect the state of the repository as at the check-in identified by commit. The expected argument is either the name of a branch, which will resolve to the latest commit on the given branch, or (a unique abbreviated prefix of) a valid commit UUID SHA1 or SHA3 hash. For a complete list of valid arguments this option accepts, see Fossil's Check-in Names.
, --help
Display tree command help and usage information then exit.
, --repo path
Use the fossil(1) repository database at the specified path for the current fnc tree invocation. When this option is used, the checkout-related Fossil special tags “current”, “prev”, and “next” are invalid arguments to the --commit option.

Key bindings for fnc tree are as follows:

Enter the currently selected directory, or open a blame view of the currently selected file.
Move up a level to the parent directory. This is a no-op when in the root tree.
Move selection cursor one node down the tree.
Move selection cursor one node up the tree.
Scroll tree view one page downwards in the buffer.
Scroll tree view one page upwards in the buffer.
Scroll tree view half a page downwards in the buffer.
Scroll tree view half a page upwards in the buffer.
Move selection cursor to the first node in the tree.
Move selection cursor to the last node in the tree.
Open and populate branch view with all repository branches.
Toggle coloured output. On supported terminals, fnc will default to displaying the tree in colour.
Toggle ISO8601 modified timestamp display for each tree entry.
Toggle SHA hash UUID display for all file nodes displayed in the tree.
Open timeline view for the currently selected tree node. This will display the timeline of all commits that involve the versioned file(s) corresponding to the selected node.
Prompt to enter a search term to begin searching the tree for nodes matching the entered pattern. The search term is an extended regular expression, as documented in re_format(7), and is matched against the path of each tree node.
Find the next tree node that matches the current search pattern.
Find the previous tree node that matches the current search pattern.
[-C | --no-colour] [-c | --commit commit [-r | --reverse]] [-h | --help] [-n | --limit n] [-R | --repo path] path
(aliases: praise, annotate, bl, pr, an)
Show commit attribution history for each line of the file at the specified path, which may be absolute, relative to the current working directory, or relative to the repository root. Unless the --repo option is used, this command must be executed from within the repository hierarchy; that is, fnc assumes a local checkout is open in or above the current working directory.

Options for fnc blame are as follows:

, --no-colour
Disable coloured output, which is enabled by default on supported terminals. If this option is not used, colour can be toggled with the c blame view key binding as documented below. User-defined colours are also supported, see ENVIRONMENT for details.
, --commit commit
Start blame of file at the specified path from the check-in identified by commit. The expected argument is either the name of a branch, which will resolve to the latest commit on the given branch, or (a unique abbreviated prefix of) a valid commit UUID SHA1 or SHA3 hash. When this option is not supplied, fnc will blame the version of the file from the current checkout. For a complete list of valid arguments this option accepts, see Fossil's Check-in Names.
, --help
Display blame command help and usage information then exit.
, --line lineno
Open annotated file at lineno. As documented below, once the file is loaded, the @ key binding can be used to navigate to an arbitrary line in the file.
, --limit n
Limit depth of blame history to n commits or seconds. The latter is denoted by a postfixed 's' (e.g., 30s). With this option, fnc will traverse either as many commits as specified, or as possible in the specified time limit. By default, fnc will traverse the entire historical record of the file, which can be expensive for large files that span many commits. Use this option for a faster, more targeted annotation.
, --repo path
Use the fossil(1) repository database at the specified path for the current fnc blame invocation. When this option is used, the checkout-related Fossil special tags “current”, “prev”, and “next” are invalid arguments to the --commit option. When --commit is not specified, fnc will default to blaming the version of the file found in the latest commit.
, --reverse
Reverse annotate the file starting from a historical commit and move forward in time. That is, rather than show the most recent change to each line, show the first time each line was modified by a subsequent commit after the specified commit. (Requires -c|--commit.)

Key bindings for fnc blame are as follows:

Move selection cursor down one line.
Move selection cursor up one line.
Scroll the view two columns to the right in the buffer. File output moves left on the screen.
Scroll the view two columns to the left in the buffer. File output moves right on the screen.
Scroll the view right to the end of the longest line in the file.
Scroll the view left to the beginning of the line.
Scroll blame view one page downwards in the buffer.
Scroll blame view one page upwards in the buffer.
Scroll blame view half a page downwards in the buffer.
Scroll blame view half a page upwards in the buffer.
Move selection cursor to the first line in the file.
Move selection cursor to the last line in the file.
Display the diff of the commit corresponding to the currently selected line.
Toggle display of file line numbers.
Open prompt to enter line number and navigate to that line in the file.
Reload the previous blamed version of the file.
Blame the version of the file corresponding to the commit in the currently selected line.
Toggle coloured output. On supported terminals, fnc will default to displaying the blamed file in colour.
Blame the version of the file corresponding to the parent of the commit in the currently selected line.
Open and populate branch view with all repository branches.
Prompt to enter a search term to begin searching the file for tokens matching the entered pattern. The search term is an extended regular expression, as documented in re_format(7).
Find the previous token that matches the current search pattern.
Find the next token that matches the current search pattern.
[-C | --no-colour] [--after date | --before date] [-h | --help] [--open | --closed] [-p | --no-private] [-R | --repo path] [-r | --reverse] [-s | --sort order] [glob]
(aliases: tag, br)
Display navigable list of repository branches. If glob is specified, only display branches matching the pattern provided. Pattern matching is case-insensitive unless glob contains at least one uppercase character, in which case the search will be case-sensitive. Unless the --repo option is used, this command must be executed from within the repository hierarchy; that is, fnc assumes a local checkout is open in or above the current working directory.

Branches are lexicographically ordered by default, and are prefixed with an identifier corresponding to the branch state (i.e., open/closed). The current and private branches are additionally annotated with a postfixed identifier:

+dev-foo open
-rm-bar closed
+trunk@ current
+wip-baz* private

All branches, irrespective of state or privacy, are displayed by default, but can be filtered based on several characteristics.

Options for fnc branch are as follows:

, --after date
Display only those branches with activity after the specified date, which is expected to be either an ISO8601 (e.g., 2020-10-10) or unambiguous DD/MM/YYYY or MM/DD/YYYY formatted date.
, --before date
Display only those branches with activity before the specified date, which is expected to be either an ISO8601 (e.g., 2020-10-10) or unambiguous DD/MM/YYYY or MM/DD/YYYY formatted date.
, --no-colour
Disable coloured output, which is enabled by default on supported terminals. If this option is not used, colour can be toggled with the c branch view key binding as documented below. User-defined colours are also supported, see ENVIRONMENT for details.
, --closed
Display only closed branches.
, --help
Display branch command help and usage information then exit.
, --open
Display only opened branches.
, --no-private
Do not show private branches, which are included in the list of displayed branches by default.
, --repo path
Use the fossil(1) repository database at the specified path for the current fnc branch invocation.
, --reverse
Reverse the order in which branches are displayed.
, --sort order
Sort branches by order. Valid order values are as follows:
mru most recently used
state open/closed state

Branches are sorted in lexicographical order by default.

Key bindings for fnc branch are as follows:

Move selection cursor down one branch.
Move selection cursor up one branch.
Scroll branch view one page downwards in the buffer.
Scroll branch view one page upwards in the buffer.
Scroll branch view half a page downwards in the buffer.
Scroll branch view half a page upwards in the buffer.
Move selection cursor to the first branch in the list.
Move selection cursor to the last branch in the list.
Display the timeline of the currently selected branch.
Toggle coloured output. On supported terminals, fnc will default to displaying the branch list in colour.
Toggle display of the date on which the branch last received changes.
Toggle display of the SHA{1,3} hash that identifies branch, which is the hash of the commit on the tip of said branch.
Toggle sort order of currently displayed branches. If branches are ordered lexicographically, fnc will sort branches in most recently used order, otherwise branches will be sorted by their open/closed state.
Open the tree view of the currently selected branch.
Reload the view with all repository branches, irrespective of which options were used in this fnc branch invocation.
Prompt to enter a search term to begin searching the list for branches matching the entered pattern. The search term is an extended regular expression, as documented in re_format(7).
Find the next branch that matches the current search pattern.
Find the previous branch that matches the current search pattern.

Depending on the available screen estate determined by the LINES and COLUMNS environment variables, fnc will display child views in either a horizontal or vertical split. By default, if COLUMNS is ≥ 120, a child view will open in a vertical split at least 80 columns wide. Otherwise, the child view will open in a horizontal split that is approximately 60% of the terminal height. This behaviour can be customised by configuring the following options as either exported environment variables or with fnc config as documented above.
Open child views in a horizontal or vertical split. Value can be one of auto, horizontal, or vertical. Default: “auto”.
Height of the child view when opening in a horizontal split. Valid numeric values are 1 ≤ n < LINES. Percentage values denoted with a postfixed ‘%’ (e.g., 55%) are also valid. Default: “60%”.
Minimum width of the child view when opening in a vertical split. Currently a no-op. Default: “80”.

Similarly, diff options can be persistently applied to all diff views (i.e., whether directly accessed with fnc diff or via the timeline or branch commands' corresponding key maps) by configuring the following options:

String containing any or all of the available short form diff boolean flag options documented above (i.e., CilPqsWw). If mutually exclusive options “l” and “s” are both specified, whichever is last will take precedence; for example, “lqs” will display side-by-side formatted diffs. Default: NULL.
Numeric value as per the above documented -x|--context option (i.e., 0 ≤ n ≤ 64) specifying the number of context lines. Illegal values are a no-op. Default: 5.

Any options passed to fnc diff will override the above settings.

fnc displays coloured output by default in supported terminals. Each colour object identified below can be defined by either exporting environment variables (e.g., export FNC_COLOUR_COMMIT=red), or with fnc config as documented above. At startup, fnc will search for user-defined colours in the following order:

1. repository settings repo.fossil
3. environment variables shell

If none are found, the default colour scheme will be displayed. This enables setting per-project colours to visually distinguish the current repository being viewed, and globally changing the colour scheme for all repositories with no local settings configured. Except where documented below, colours supported in fnc are:

“black” “green” “blue” “cyan”
“red” “yellow” “magenta” “default”

Where “default” is the current foreground (i.e., text) colour in the terminal. User-definable colour objects displayed in various fnc views are as follows:

The commit hash ID field displayed in the timeline, diff, tree, and blame views. If not defined, the default value is “green”.
The username field displayed in the timeline and diff views. If not defined, the default value is “cyan”.
The date field displayed in the timeline and diff views. If not defined, the default value is “yellow”.
Removed lines displayed in the diff view. If not defined, the default value is “magenta”.
Added lines displayed in the diff view. If not defined, the default value is “cyan”.
Chunk header lines (e.g., @@ -732,34 +747,40 @@) displayed in the diff view. If not defined, the default value is “yellow”.
Metadata displayed in the diff view. If not defined, the default value is “green”.
The tag field displayed in the diff view. If not defined, the default value is “magenta”.
Changed (i.e., not added or removed) lines in the diff view when displaying side-by-side diffs. If not defined, the default value is “red”.
Directory entries displayed in the tree view. If not defined, the default value is “cyan”.
Executable file entries displayed in the tree view. If not defined, the default value is “green”.
Symbolic link entries displayed in the tree view. If not defined, the default value is “magenta”.
Open branches displayed in the branch view. If not defined, the default value is “cyan”.
Closed branches displayed in the branch view. If not defined, the default value is “magenta”.
The branch corresponding to the current checkout displayed in the branch view. If not defined, the default value is “green”.
Private branches displayed in the branch view. If not defined, the default value is “yellow”.
Selected line highlight in the diff view. Value can be one of auto or mono. The former will invert the foreground colour of the selected line, while the latter will use a monochromatic highlight. If not defined, the default value is “auto”.
Search term highlight in blame and diff view. If not defined, the default value is “yellow”.

To clear environment variables, issue unset ENVIRONMENT_VARIABLE in the shell.

The fnc utility exits 0 on success, and >0 if an error occurs.

fossil(1), re_format(7) sqlite3(1)

Mark Jamsek <mark@jamsek.com>
June 12, 2022 FreeBSD 13.1-RELEASE

Search for    or go to Top of page |  Section 1 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.