summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Davison <dandavison7@gmail.com>2023-06-03 10:39:40 -0400
committerDan Davison <dandavison7@gmail.com>2023-06-03 12:44:05 -0400
commit01f92de6df52457aceb68a5c89b2bb440a6b64d7 (patch)
treee29e1676ca5d65c739376310cd0d667dfa912df7
parent4ab08caf170719be06aba136b06d93a737ffc43c (diff)
Delete notes about unsupported GIT_CONFIG_GLOBAL env var
Should be supported by recent git2
-rw-r--r--manual/src/configuration.md1
-rw-r--r--manual/src/environment-variables.md5
2 files changed, 0 insertions, 6 deletions
diff --git a/manual/src/configuration.md b/manual/src/configuration.md
index 620f3587..43fabe66 100644
--- a/manual/src/configuration.md
+++ b/manual/src/configuration.md
@@ -52,4 +52,3 @@ git -c delta.line-numbers=false show
There are several important environment variables that affect delta configuration and which can be used to configure delta dynamically.
Please see [Environment variables](./environment-variables.md).
-In particular, note that delta does not currently honor all relevant [git environment variables](https://git-scm.com/docs/git-config#_environment), since delta uses [libgit2](https://github.com/libgit2/libgit2) to read git config.
diff --git a/manual/src/environment-variables.md b/manual/src/environment-variables.md
index b33069e0..e9491e02 100644
--- a/manual/src/environment-variables.md
+++ b/manual/src/environment-variables.md
@@ -4,11 +4,6 @@
The `GIT_PAGER` environment variable must either not be set at all, or set to the value `delta` (you can add argument here if you want; this env var plays the same role as the `core.pager` config entry).
-Unfortunately, delta does not currently honor all relevant [git environment variables](https://git-scm.com/docs/git-config#_environment).
-For example, it does not honor `GIT_CONFIG_GLOBAL`.
-This is because delta uses [libgit2](https://github.com/libgit2/libgit2) to read git config, whereas git uses its own code.
-(libgit2 is a project run by volunteers; if this affects you, please do consider contributing the required features to libgit2!)
-
## Pager environment variables
A pager is a program that accepts many lines of text as input, and displays them one screenful at a time.