FNC(1) General Commands Manual FNC(1)

fncinteractive text-based user interface for Fossil repositories

fnc [-R repository] command [arg ...]

fnc [-hv]

fnc path


fnc blame [-Chr] [-c commit] [-l lineno] [-n n] path

fnc branch [-Cchopr] [-a date] [-b date] [-s order] [glob]

fnc config [-hl] [-u option] [option [value]]

fnc diff [-bCDhiloPqsWw] [-x n] [artifact1 [artifact2]] [path ...]

fnc stash [-ChP] [-x n] [(get|pop) [id]]

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

fnc tree [-Ch] [-c commit] [path]

fnc is an interactive text-based user interface for exploring fossil(1) repositories, and managing local changes in a Fossil work tree.

To facilitate navigation and display repository data, fnc supports multiple views:

Display commits from the repository's history in chronologically descending order. If no command or only a path is specified, fnc will default to displaying this view.
Display changes introduced in the specified commit, between two repository artifacts, or local changes in the work tree.
Display navigable tree reflecting the repository state as at the specified commit.
Display and annotate each line in the given file with the hyperlinked commit in which the line was last modified.
Display navigable list of all repository branches.

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

, --help
Display program help and usage information then exit.
, --repo path
Use the fossil(1) repository at the specified path for the current fnc invocation.
, --version
Display program version then exit.

Global key bindings are as follows:

Display runtime help.
Switch focus between open views.
Toggle the active view between fullscreen and splitscreen mode. By default, fnc will open child views in a vertical split if the terminal width is ≥ 120 columns, otherwise a horizontal split will be used.
Scroll to the last line in the view.
Scroll to the first line in the view.
Quit fnc.
Quit the active view.

Commands available to fnc are as follows:

[-hl] [-u option | option [value]]
(aliases: conf, set)
Retrieve the current or set a new value for option in the local repository. When specified, value will become the new value for option, otherwise fnc will display the current value of option. With no arguments, fnc config will list all user-defined options; see ENVIRONMENT for a detailed list of all available options and their default values.

During initialisation, if no value is defined for a given option in the local repository, environment variables will be searched. If still not found, fnc will fallback to default values.

Unless the global -R option is used to specify a fossil(1) repository, this command must be invoked from within a work tree; 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.
, --ls
List all available options.
, --unset option
Clear the specified option.
[-ChP] [-x n] [(get|pop) [id]]
(aliases: save, sta)
When run with neither the get nor pop subcommands, fnc stash will interactively iterate over each hunk comprising the diff of local changes in the work tree, and prompt the user to either stash or keep the current hunk.

Valid answers are as follows:

scroll back^
show more of the current hunk^
yes, stash the current hunk
no, do not stash the current hunk
yes, stash this hunk and all remaining hunks in the current file
no, do not stash this hunk nor any remaining hunks in the current file
yes, stash this hunk and all remaining hunks in the diff
no, do not stash this hunk nor any remaining hunks in the diff
abort the stash operation and discard any previous selections
display help dialog

^Conditionally available when the current hunk occupies multiple pages.

When all hunks have been selected, fnc will prompt the user to enter a stash message. If not provided, a default message of "fnc stash HASH-PREFIX", where "HASH-PREFIX" is an abbreviated SHA hash of the current checkout, will be used. At any time prior to the final hunk being selected (i.e., before being prompted for the stash message), the operation can be aborted by either answering "Q" at the prompt or opening the help dialog and entering the Q key binding. This will discard any previous selections and leave the work tree unchanged.

Available subcommands for fnc stash are as follows:

[id]
(aliases: apply)
Retrieve the stash changeset corresponding to the specified id and apply it to the current checkout. If id is omitted, the most recent stash entry will be applied.
[id]
Like get, but also remove the changeset from the stash cache.

Options only apply to fnc stash (i.e., neither the get nor pop subcommands) and are as follows:

, --no-colour
Disable coloured output, which is enabled by default on supported terminals.
, --help
Display stash command help and usage information then exit.
, --no-prototype
Do not display the enclosing function or scope in the hunk header. The heuristic used to determine the enclosing scope will produce reliable results for all C-like languages (e.g., C/C++, Java, Python, JavaScript); however, Lisps and non-source code (e.g., make(1), Markdown, reStructuredText) will return meaningless results.
, --context n
Set n context lines to be shown in the interactive stash diff display such that 0 ≤ n ≤ 64. Illegal values are a no-op (default: 5).

[-Chz] [-b branch] [-c commit] [-f glob] [-n n] [-T tag] [-t type] [-u user] [path]
(aliases: log, tl)
Display repository history with a chronological log of all commits. If path is specified, only show commits that modified the file(s) at this path. The path may be absolute, relative to the current working directory, or relative to the repository root.

Unless the global -R option is used to specify a fossil(1) repository, this command must be invoked from within a work tree; that is, fnc assumes a local checkout is open in or above the current working directory.

If invoked in a work tree, the log entry of the commit on which the checkout is based will be prefixed with one of the following annotations:

@ work tree of the checked-out commit contains no local changes
~ work tree of the checked-out commit contains local changes

This command will be executed by default if fnc is invoked without an explicit command.

Options for fnc timeline are as follows:

, --branch branch
Display commits on the specified branch. The expected argument is a glob of the symbolic branch name, with the most recent branch to match being selected. Pattern matching is case-insensitive unless branch has at least one uppercase character, which will make the search case-sensitive. By default, fnc will display all commits irrespective of the branch on which they reside.
, --no-colour
Disable coloured 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
Start timeline traversal from the specified commit. The expected argument is either a symbolic reference (e.g., branch name, tag), or (a unique abbreviated prefix of) a valid commit SHA1 or SHA3 hash, or an ISO 8601 formatted date. When this option is not used, fnc will begin traversing history from the latest commit. 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, which will make the search case-sensitive. Filtering can also be performed at runtime 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 repository history. Negative values are a no-op.
, --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, which will make the search case-sensitive. By default, fnc will 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:
check-in
wiki
ticket
technote
forum post
tag artifact

By default, fnc will load all commits irrespective of type. 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, which will make the search 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 view to the right in the buffer. Comment field contents move left on the screen.
Scroll view to the left in the buffer. Comment field contents move right on the screen.
Scroll view to the rightmost position. This corresponds to the end of the longest log message summary line on the page.
Scroll view left to the start of the line.
Scroll timeline view one page downwards in the buffer.
Scroll timeline view one page upwards in the buffer.
Scroll timeline view half of one page downwards in the buffer.
Scroll timeline view half of one page upwards in the buffer.
Open a diff view displaying the changeset of the currently selected commit.
Tag or untag the currently selected commit as the base commit for the next tagged commit to be diffed against. If another commit is already tagged, open a diff view showing the changes between it and the currently selected commit.
Open and populate a branch view with all repository branches. One of the listed branches can be selected to display a new timeline view of its commit history.
Diff local changes on disk in the current work tree against the currently selected commit.
Toggle coloured timeline. On supported terminals, fnc will default to displaying the timeline in colour. Colours can be customised using the config command or environment variables (see ENVIRONMENT for details).
Prompt to enter a search term to filter a new timeline view that displays commits with comment, user, or branch fields that match the entered pattern.
Open a tree view displaying 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 that is matched against the comment, author username, branch, and SHA1 or SHA3 hash of each commit in the repository. 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 in progress (i.e., operations executed with / or G/End).
[-bCDhiloPqsWw] [-x n] [artifact1 [artifact2]] [path ...]
(alias: di)
Display the differences between two repository artifacts, or between the local changes in the work tree and a given commit.

If invoked in a work tree with no artifact arguments specified, fnc will show the differences between the local changes in the work tree and the commit on which the current checkout is based. If invoked in a work tree and only artifact1 is specified, fnc will show the differences between the local changes in the work tree and the commit referenced by artifact1. When artifact1 and artifact2 are specified, the differences between these two versions will be displayed. Both artifact arguments must resolve to the same type (i.e., commits or blobs), and are expected to be either: symbolic references (e.g., branch names, tags); a commit or blob SHA1 or SHA3 (unique abbreviated) hash; or an ISO 8601 formatted date. If one or more path arguments are supplied, fnc will filter diffs so that only changes involving the file(s) in the named paths are displayed. Paths may be absolute, relative to the current working directory, or relative to the repository root.

When invoked outside a work tree with the global -R option or requesting the differences between blobs, both artifact arguments must be specified; in the latter case, any trailing arguments are invalid and will be ignored.

Unless the global -R option is used to specify a fossil(1) repository, this command must be invoked from within a work tree; that is, fnc assumes a local checkout is open in or above the current working directory.

Options for fnc diff are as follows:

, --brief
Omit all changes. Show the file index and hash lines only.
, --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).
, --min-diffstat
Show minimal diffstat instead of the more verbose plot bar histogram.
, --help
Display diff command help and usage information then exit.
, --invert
Invert the differences between artifacts.
, --line-numbers
Display actual file line numbers in diff output.
, --no-curses
Do not initialise curses to render the diff view. Write the diff directly to the standard output.
, --no-prototype
Do not display the enclosing function or scope in the hunk header. The heuristic used to determine the enclosing scope will produce reliable results for all C-like languages (e.g., C/C++, Java, Python, JavaScript); however, Lisps and non-source code (e.g., make(1), Markdown, reStructuredText) will return meaningless results. This option is mutually exclusive with -l and -s, which produce incompatible hunk headers.
, --quiet
Do not output complete content of newly added or deleted files, which are displayed by default. Only show the file index and hash lines.
, --sbs
Display a side-by-side formatted diff. This option is mutually exclusive with -l.
, --whitespace-eol
Ignore end-of-line whitespace-only changes.
, --whitespace
Ignore whitespace-only changes.
, --context n
Set n context lines to be shown in the diff such that 0 ≤ n ≤ 64. Illegal values are a no-op (default: 5).

All the above options (except -h and -o) can be made persistent as global or repository options via the FNC_DIFF_FLAGS option (see ENVIRONMENT for details).

Key bindings for fnc diff are as follows:

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.
Scroll view to the right in the buffer. Diff output moves left on the screen.
Scroll view to the left in the buffer. Diff output moves right on the screen.
Scroll view to the rightmost position. This corresponds to the end of the longest line on the page.
Scroll view left to the start of the line.
Move the selection cursor down one line.
Move the selection cursor up one line.
Scroll diff view one page downwards in the buffer.
Scroll diff view one page upwards in the buffer.
Scroll diff view half of one page downwards in the buffer.
Scroll diff view half of one page upwards in the buffer.
If the diff view is derived from the timeline view, move up to the previous (i.e., newer) commit and display its diff. If derived from the blame view, move up to the previous line in the annotated file and display the corresponding diff.
If the diff view is derived from the timeline view, move down the timeline to the next (i.e., older) commit and display its diff. If derived from the blame view, move down to the next line in the annotated file and display the corresponding diff.
Navigate to the previous file in the diff.
Navigate to the next file in the diff.
Navigate to the previous hunk in the diff.
Navigate to the next hunk in the diff.
Decrease the number of context lines in the diff.
Increase the number of context lines in the diff.
Toggle the display of diff view (not actual file) line numbers.
Open prompt to enter a line number and navigate to that line in the view.
Toggle brief diff mode by only displaying file index and hash lines.
Open and populate the branch view with all repository branches.
Toggle coloured diff output. On supported terminals, fnc will default to displaying changes and diff metadata in colour.
Toggle between minimal and histogram diffstat.
Toggle inversion of diff output.
Toggle file line number formatted diff.
Write the currently viewed diff to a file on disk. fnc will prompt the user for a path, which can be absolute or relative, that points to a location in either the current work tree or the tmp directory. If no path is input and the key is entered, the diff will be written to the current working directory using the first ten characters of the current artifact hash as the filename with a ".diff" extension (e.g., 2870235eef.diff). If the path already exists, it will be overwritten.
In the diff hunk header, toggle display of which function or scope each change is in; for example:
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 end-of-line whitespace changes are ignored when comparing lines in the diff.
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.
[-Ch] [-c commit] [path]
(aliases: dir, tr)
Display a navigable tree of the repository.

If a path is specified, display the corresponding subtree, otherwise display the root of the tree. 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 global -R option is used to specify a fossil(1) repository, this command must be invoked from within a work tree; 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 further annotated with the path of the source file (e.g., symlink@ -> targetpath)

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
Display the repository tree corresponding to the checkin identified by commit. The expected argument is either a symbolic reference (e.g., branch name, tag), or (a unique abbreviated prefix of) a valid commit SHA1 or SHA3 hash, or an ISO 8601 formatted date. When this option is not used, fnc will display the tree of the latest commit. 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.

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 of one page downwards in the buffer.
Scroll tree view half of one 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 the branch view with all repository branches.
Toggle coloured output. On supported terminals, fnc will default to displaying the tree in colour.
Toggle display of the last modified timestamp for each tree entry.
Toggle display of the hash ID for all file nodes in the tree.
Open the timeline view of the currently selected tree entry. This will display the log of all commits involving the tracked file(s) corresponding to the selected tree node.
Prompt to enter a search term to begin searching the tree for entries 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.
[-Chr] [-c commit] [-l lineno] [-n n] path
(aliases: praise, bl)
Show commit attribution history for each line of the file at the named path, which may be absolute, relative to the current working directory, or relative to the repository root.

Unless the global -R option is used to specifiy a fossil(1) repository, this command must be invoked from within a work tree; 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 annotation of the tracked file from the specified commit. The expected argument is either a symbolic reference (e.g., branch name, tag), or (a unique abbreviated prefix of) a valid commit SHA1 or SHA3 hash, or an ISO 8601 formatted date. When this option is not used, fnc will begin annotation from the latest commit. 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 the annotated file and navigate directly to lineno.
, --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.
, --reverse
Reverse annotate the file starting from a historical commit and move forward in time so that instead of showing the most recent commit that changed each line, show the first commit that modified each line after the specified commit (requires -c).

Key bindings for fnc blame are as follows:

Move selection cursor down one line.
Move selection cursor up one line.
Scroll view to the right in the buffer. File contents move left on the screen.
Scroll view to the left in the buffer. File contents move right on the screen.
Scroll view to the rightmost position. This corresponds to the end of the longest line on the page.
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 of one page downwards in the buffer.
Scroll blame view half of one 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.
Open a diff view of the commit corresponding to the currently selected line.
Toggle display of file line numbers.
Open prompt to enter a line number and navigate to that line in the file.
Reload the previously 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 a 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.
[-Cchopr] [-a date] [-b date] [-s order] [glob]
(aliases: br, ref)
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, which will make the search case-sensitive.

Unless the global -R option is used to specify a fossil(1) repository, this command must be invoked from within a work tree; 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 further 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 ISO 8601 (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 ISO 8601 (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.
, --reverse
Reverse the order in which branches are displayed.
, --sort order
Sort branches by order. Valid order values are as follows:
most recently used
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 of one page downwards in the buffer.
Scroll branch view half of one 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 a timeline view 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 SHA1 or SHA3 hash that identifies each branch, which is the commit hash of the branch tip.
Toggle sort order of currently displayed branches. fnc will cycle from lexicographical order to most recently used and then open/closed state.
Open a 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 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. Integers and percentage values denoted with a postfixed ‘%’ (e.g., "75%") are valid. Values that resolve to n lines such that 2 ≤ n < LINES - 2 are accepted while values outside this range are rejected (default: 60%).
Minimum width of the child view when opening in a vertical split (default: 80). Currently a no-op.

Similarly, diff options can be persistently applied to all diff views whether directly accessed with fnc diff or as a child view of the timeline or blame views by configuring the following options:

String containing any or all of the available short form diff boolean flag options documented above except for the -h and -o options (i.e., bCDilPqsWw). 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: "").
Numeric value as per the above documented -x option (i.e., 0 ≤ n ≤ 64) specifying the number of context lines (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 options repo.fossil
2. environment variables

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 options 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 (default: "green").
The username field displayed in the timeline and diff views (default: "cyan").
The date field displayed in the timeline and diff views (default: "yellow").
Removed lines displayed in the diff view (default: "magenta").
Added lines displayed in the diff view (default: "cyan").
Hunk header lines (e.g., @@ -732,34 +747,40 @@) displayed in the diff view (default: "yellow").
Metadata displayed in the diff view (default: "green").
The tag field displayed in the diff view (default: "magenta").
Changed (i.e., not added or removed) lines in the diff view when displaying side-by-side diffs (default: "red").
Directory entries displayed in the tree view (default: "cyan").
Executable file entries displayed in the tree view (default: "green").
Symbolic link entries displayed in the tree view (default: "magenta").
Open branches displayed in the branch view (default: "cyan").
Closed branches displayed in the branch view (default: "magenta").
The branch corresponding to the current checkout displayed in the branch view (default: "green").
Private branches displayed in the branch view (default: "yellow").
Selected line highlight in the diff view. Value can be one of or . The former will invert the foreground colour of the selected line, while the latter will use a monochromatic highlight (default: "auto").
Search term highlight in the blame and diff views (default: "yellow").

To clear environment variables, invoke the shell builtin unset; for example, "unset FNC_DIFF_CONTEXT". As documented above, local options can be unset with fnc config -u option.

fnc displays best with UTF-8, and will detect whether UTF-8 is enabled to determine which characters to draw in certain views. If UTF-8 is supported by your terminal but is currently disabled, it can be enabled with "export LC_CTYPE=en_US.UTF-8"; If not available, fnc will revert to ASCII. Relatedly, some fonts may render certain characters poorly in the help screen as they lack the requisite glyphs; Monospace Regular, JetBrains Mono, and Menlo are known to render all characters well.

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

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

Mark Jamsek <mark@jamsek.com>

September 20, 2023 OpenBSD 7.3