summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosh Soref <jsoref@users.noreply.github.com>2020-05-07 19:38:18 -0400
committerJesse Duffield <jessedduffield@gmail.com>2020-05-08 09:48:13 +1000
commit3dd33b65a04b95c33b4cf154d41e8ab08d8aa9e2 (patch)
tree270519b39707a2a1c60dfa105e60373ada66c63a
parentb85048f6164921bb099379f653484d1399f4652a (diff)
Minor fixes
* Windows * Use backticks * Italicize git config
-rw-r--r--docs/Custom_Pagers.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/Custom_Pagers.md b/docs/Custom_Pagers.md
index 37d11b3ca..8c3121e73 100644
--- a/docs/Custom_Pagers.md
+++ b/docs/Custom_Pagers.md
@@ -1,8 +1,8 @@
# Custom Pagers
-Lazygit supports custom pagers, [configured](/docs/Config.md) in the config.yml file (which can be opened by pressing 'o' in the Status panel).
+Lazygit supports custom pagers, [configured](/docs/Config.md) in the config.yml file (which can be opened by pressing `o` in the Status panel).
-Support does not extend to windows users, because we're making use of a package which doesn't have windows support.
+Support does not extend to Windows users, because we're making use of a package which doesn't have Windows support.
## Default:
@@ -13,7 +13,7 @@ git:
useConfig: false
```
-the `colorArg` key is for whether you want the `--color=always` arg in your `git diff` command. Some pagers want it set to always, others want it set to 'never'.
+the `colorArg` key is for whether you want the `--color=always` arg in your `git diff` command. Some pagers want it set to `always`, others want it set to `never`.
## Delta:
@@ -61,4 +61,4 @@ git:
useConfig: true
```
-If you set `useConfig: true`, lazygit will use whatever pager is specified in $GIT_PAGER, $PAGER, or your git config. If the pager ends with something like ' | less' we will strip that part out, because less doesn't play nice with our rendering approach. If the custom pager uses less under the hood, that will also break rendering (hence the `--paging=never` flag for the `delta` pager).
+If you set `useConfig: true`, lazygit will use whatever pager is specified in `$GIT_PAGER`, `$PAGER`, or your *git config*. If the pager ends with something like ` | less` we will strip that part out, because less doesn't play nice with our rendering approach. If the custom pager uses less under the hood, that will also break rendering (hence the `--paging=never` flag for the `delta` pager).