diff --git a/man/man1/zoxide.1 b/man/man1/zoxide.1
index ef1792b..2c765af 100644
--- a/man/man1/zoxide.1
+++ b/man/man1/zoxide.1
@@ -92,6 +92,10 @@ to use \fBzoxide-remove\fR(1) to remove any existing entries from the database.
Custom options to pass to \fBfzf\fR(1) during interactive selection. See the
manpage for the full list of options.
.TP
+.B_ZO_FZF_EXTRA_OPTS
+Custom options to pass to \fBfzf\fR(1) during interactive selection, appended to the default ones.
+See the manpage for the full list of options.
+.TP
.B _ZO_MAXAGE
Configures the aging algorithm, which limits the maximum number of entries in
the database. By default, this is set to 10000.
diff --git a/src/cmd/cmd.rs b/src/cmd/cmd.rs
index cff7e79..c5e6a82 100644
--- a/src/cmd/cmd.rs
+++ b/src/cmd/cmd.rs
@@ -26,6 +26,7 @@ https://github.com/ajeetdsouza/zoxide
{tab}_ZO_ECHO {tab}Print the matched directory before navigating to it when set to 1
{tab}_ZO_EXCLUDE_DIRS {tab}List of directory globs to be excluded
{tab}_ZO_FZF_OPTS {tab}Custom flags to pass to fzf
+{tab}_ZO_FZF_EXTRA_OPTS {tab}Custom flags added the the default fzf ones
{tab}_ZO_MAXAGE {tab}Maximum total age after which entries start getting deleted
{tab}_ZO_RESOLVE_SYMLINKS{tab}Resolve symlinks when storing paths").into_resettable()
}