Skip to content

Commit

Permalink
docs: document :CommandTRipgrep and friends
Browse files Browse the repository at this point in the history
- `:CommandTFind`
- `:CommandTGit`
- `:CommandTRipgrep`
- `:CommandTWatchman`
  • Loading branch information
wincent committed Aug 27, 2022
1 parent 1c747ce commit c488f7f
Showing 1 changed file with 25 additions and 2 deletions.
27 changes: 25 additions & 2 deletions doc/command-t.txt
Original file line number Diff line number Diff line change
Expand Up @@ -255,21 +255,44 @@ 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.
This works exactly like the standard file window,
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.

Expand Down

0 comments on commit c488f7f

Please sign in to comment.