From c488f7f41e863398d4a5faae5c029247de759a41 Mon Sep 17 00:00:00 2001 From: Greg Hurrell Date: Sat, 27 Aug 2022 10:58:50 +0200 Subject: [PATCH] docs: document `:CommandTRipgrep` and friends - `:CommandTFind` - `:CommandTGit` - `:CommandTRipgrep` - `:CommandTWatchman` --- doc/command-t.txt | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/doc/command-t.txt b/doc/command-t.txt index 7e554320..67b5f5db 100644 --- a/doc/command-t.txt +++ b/doc/command-t.txt @@ -255,8 +255,9 @@ COMMANDS *command-t-commands* *:CommandT* |:CommandT| Brings up the Command-T file window, starting in the current - working directory as returned by the |:pwd| - command. + working directory as returned by the |:pwd| command. Scans + for files using the `fts` facilities provided by the C + standard library. *:CommandTBuffer* |:CommandTBuffer| Brings up the Command-T buffer window. @@ -264,12 +265,34 @@ COMMANDS *command-t-commands* except that the selection is limited to files that you already have open in buffers. + *:CommandTFind* +|:CommandTFind| Brings up the Command-T file window, starting in the current + working directory as returned by the |:pwd| command. Scans + for files by executing the `find` executable. + + *:CommandTGit* +|:CommandTGit| Brings up the Command-T file window, starting in the current + working directory as returned by the |:pwd| command. Scans + for files using `git`, so only works inside Git + repositories. + *:CommandTHelp* |:CommandTHelp| Brings up the Command-T help search window. This works exactly like the standard file window, except that it shows help topics found in any documentation under Vim's |'runtimepath'|. + *:CommandTRipgrep* +|:CommandTRipgrep| Brings up the Command-T file window, starting in the current + working directory as returned by the |:pwd| command. Scans + for files using `rg`. + + *:CommandTWatchman* +|:CommandTWatchman| Brings up the Command-T file window, starting in the current + working directory as returned by the |:pwd| command. Scans + for files by connecting to the `watchman` daemon, which must + be installed on your system. + See also |command-t-ruby-commands| for commands that exist specifically within the Ruby-powered version of Command-T.