Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
To refer to some newly added capabilities (and
others not so new), and to elevate speed as the
primary design goal.
  • Loading branch information
wincent committed Mar 3, 2016
1 parent 5cdd24e commit 6f0668e
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions README.md
Expand Up @@ -2,13 +2,19 @@

![](https://raw.githubusercontent.com/wincent/command-t/media/command-t.gif)

Command-T is a Vim plug-in that provides an extremely fast "fuzzy" mechanism for opening files and buffers with a minimal number of keystrokes.
Command-T is a Vim plug-in that provides an extremely fast "fuzzy" mechanism for:

- Opening files and buffers
- Jumping to tags and help
- Running commands, or previous searches and commands

with a minimal number of keystrokes.

Files are selected by typing characters that appear in their paths, and are ranked by an algorithm which knows that characters that appear in certain locations (for example, immediately after a path separator) should be given more weight.

Files can be opened in the current window, or in splits or tabs. Many configuration options are provided.

Speed is one of the primary design goals, along with providing high-quality, intuitive match ordering. The hand-crafted matching algorithm, implemented in low-level C and combined with parallelized search, input debouncing, integration with Watchman and many other optimizations, mean that Command-T is the fastest fuzzy file finder bar none.
Speed is the primary design goal, along with providing high-quality, intuitive match ordering. The hand-crafted matching algorithm, implemented in low-level C and combined with parallelized search, input debouncing, integration with Watchman and many other optimizations, mean that Command-T is the fastest fuzzy file finder bar none.

---

Expand Down

0 comments on commit 6f0668e

Please sign in to comment.