summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGian-Laager <59933661+Gian-Laager@users.noreply.github.com>2023-01-06 02:58:39 -0800
committerGitHub <noreply@github.com>2023-01-06 11:58:39 +0100
commit0326347eba8103ffd820547f84b75a07bff23256 (patch)
tree63c0d940d009b711000fe2c7c80b88fbb8909d6a
parentc571d96fe52a7f30787a4a9ee7abf6d931ea5902 (diff)
docs: Added note that live_grep depends on ripgrep (#2305)
-rw-r--r--README.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index 26a92c9..38237d6 100644
--- a/README.md
+++ b/README.md
@@ -279,12 +279,12 @@ Built-in functions. Ready to be bound to any key you like.
### File Pickers
-| Functions | Description |
-|-------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------|
-| `builtin.find_files` | Lists files in your current working directory, respects .gitignore |
-| `builtin.git_files` | Fuzzy search through the output of `git ls-files` command, respects .gitignore |
-| `builtin.grep_string` | Searches for the string under your cursor in your current working directory |
-| `builtin.live_grep` | Search for a string in your current working directory and get results live as you type, respects .gitignore |
+| Functions | Description |
+|-------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| `builtin.find_files` | Lists files in your current working directory, respects .gitignore |
+| `builtin.git_files` | Fuzzy search through the output of `git ls-files` command, respects .gitignore |
+| `builtin.grep_string` | Searches for the string under your cursor in your current working directory |
+| `builtin.live_grep` | Search for a string in your current working directory and get results live as you type, respects .gitignore. (Requires [ripgrep](https://github.com/BurntSushi/ripgrep)) |
### Vim Pickers