commit 3bd7d74dd0e4ffcd7af42bc088e13a6ba8905feb
Author: rani <clagv.randomgames@gmail.com>
Date: Sat Jan 28 21:37:43 2023 +0000
diff --git a/README.md b/README.md
index d56a3be..6bc9f0f 100644
--- a/README.md
+++ b/README.md
@@ -826 +828 @@ The command prompt will show up upon pressing `:` and the prompt itself is prefi
* `unset`: Unset a variable (set to false, [see Variables](#variables))
* `var`: Set a variable equal to something `var variable = false` ([see Variables](#variables) and ['config file'](#config-file))
+* `i`: Open the [info buffer](#info-buffer) viewer
+
#### Renaming
The `r` command will show a prompt (similar to a command prompt but without a prefix) where the new file name is to be expected. A file may only be renamed within the same directory.
@@ -946 +9614 @@ Pressing `!` will open a prompt prefixed with `!` which will run the shell comma
E.g. `vim %f` will format to `vim FILE` where `FILE` is the name of the file the cursor is on. `echo %%f`, however, will format to `echo %f` and the output of the command will literally be `%f`.
+#### Info Buffer
+
+The info buffer shows all information messages, warnings, and errors. The `:i` command opens a pager to view every message at once. To scroll up the buffer, any of the up keys will work. To scroll down, any of the down keys will work. To close the buffer, press `q` or `Ctrl+c`.
+
+When the info buffer is not opened, the latest info message will be shown at the bottom of the screen.
+
+Messages highlighted in red are errors, yellow are warnings, and messages without highlighting are general information.
+
#### Config File
The config file allows for the specification of default variables cscroll will always set. The default location of the file will be `$HOME/.config/cscroll/config`, but the default configuration directory can be changed with the `XDG_CONFIG_HOME` environment variable.