sponsor Vim development Vim logo Vim Book Ad

Command-T : Fast file navigation for VIM

 script karma  Rating 1089/688, Downloaded by 39932  Comments, bugs, improvements  Vim wiki

created by
Greg Hurrell
 
script type
utility
 
description
The Command-T plug-in provides an extremely fast, intuitive mechanism for opening files with a minimal number of keystrokes. It's named "Command-T" because it is inspired by the "Go to File" window bound to Command-T in TextMate.

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

For more details see the project Git repository:

  https://github.com/wincent/command-t
 
install details
Please see detailed instructions here:

  https://github.com/wincent/command-t
 

rate this script Life Changing Helpful Unfulfilling 
script versions (upload new version)

Click on the package to download.

package script version date Vim version user release notes
command-t-7.0.2.zip 7.0.2 2025-11-05 9.0 Greg Hurrell - Remove duplicate tags from documentation
  (https://github.com/wincent/command-t/pull/448, patch from Will Wills).
command-t-7.0.1.zip 7.0.1 2025-08-01 9.0 Greg Hurrell - Restore `<Plug>(CommandTTag)` mapping (https://github.com/wincent/command-t/issues/443).
command-t-6.2.1.zip 6.2.1 2025-08-01 9.0 Greg Hurrell - Restore `<Plug>(CommandTTag)` mapping (https://github.com/wincent/command-t/issues/443).
command-t-8.0.zip 8.0 2025-06-26 7.0 Greg Hurrell - Removed the Ruby implementation. Switch to the `7-x-release` branch if you still need it.
- Fixed possible missing results when |commandt.setup.height| was set to a large value.
- Improve performance when passing very large values for |commandt.setup.height|.
- Fixed a race that could cause some results to be omitted.
- Improve performance of scoring code by about 4% (wall-time).
command-t-7.0.zip 7.0 2025-06-23 9.0 Greg Hurrell - Unless the user has specified a preference for the Ruby version of Command-T by setting `g:CommandTPreferredImplementation` to `'ruby'`, the Lua version will be used by default.
command-t-6.2.zip 6.2 2025-06-23 9.0 Greg Hurrell - feat: |commandt.setup.match_listing.border| and |commandt.setup.prompt.border| now accept "winborder" as a possible value, instructing Command-T to use the value of the |'winborder'| setting to control the border appearance (https://github.com/wincent/command-t/issues/436).
- fix: make the default borders and prompt title render correctly when |commandt.setup.position| is set to `'bottom'` (https://github.com/wincent/command-t/issues/436).
- feat: port |:CommandTHistory| to Lua.
- feat: port |:CommandTSearch| to Lua.
- feat: port |:CommandTJump| to Lua.
- feat: port |:CommandTTag| to Lua.
- feat: port |:CommandTCommand| to Lua.
command-t-6.1.zip 6.1 2025-06-14 9.0 Greg Hurrell - fix: teach buffer finder to see all buffers passed into Neovim as
  command-line arguments (https://github.com/wincent/command-t/issues/418).
- feat: add |commandt.setup.scanners.max_files| settings
  (https://github.com/wincent/command-t/issues/420).
- fix: fix compilation error reported on Linux
  (https://github.com/wincent/command-t/pull/423).
- feat: add `match_listing` / `border` and `prompt` / `border` settings.
- feat: add |commandt.setup.traverse| and |commandt.setup.root_markers| settings
  (https://github.com/wincent/command-t/issues/416).
- feat: add |commandt.setup.match_listing.truncate| setting
  (https://github.com/wincent/command-t/discussions/429).
- feat: add |commandt.setup.match_listing.icons| setting
  (https://github.com/wincent/command-t/issues/430).
- feat: add |:CommandTFd|
  (https://github.com/wincent/command-t/issues/433).
command-t-6.0.0-b.1.zip 6.0.0-b.1 2022-12-17 7.0 Greg Hurrell - fix: actually respect `scanners.git.submodules` and `scanners.git.untracked` options in |commandt.setup()| (https://github.com/wincent/command-t/pull/414).
- fix: avoid "invalid option" error to `format` at specific window dimensions (https://github.com/wincent/command-t/issues/415).
command-t-6.0.0-b.0.zip 6.0.0-b.0 2022-10-22 7.0 Greg Hurrell - feat: add back `:CommandTLine` finder (https://github.com/wincent/command-t/pull/408).
command-t-6.0.0-a.4.zip 6.0.0-a.4 2022-09-06 7.0 Greg Hurrell - fix: use correct `git ls-files` switch when `scanners.git.untracked` is `true`.
  (https://github.com/wincent/command-t/pull/405).
- fix: make Watchman scanner work with a path argument
  (https://github.com/wincent/command-t/commit/c7020a44cfddfb87).
- feat: show "fallback" in prompt title if a fallback scanner kicks in
  (https://github.com/wincent/command-t/commit/c16b2721fdad1d0b).
command-t-6.0.0-a.3.zip 6.0.0-a.3 2022-09-01 7.0 Greg Hurrell - fix: fix build problem on 32-bit systems; this was a regression introduced
  in 6.0.0-a.2 (https://github.com/wincent/command-t/commit/6c8e2a3e3b5acd00).
- docs: drop unnecessary `{ remap = true }` from mapping instructions
  (https://github.com/wincent/command-t/pull/401)
- feat: implement fallback for when `find`, `git`, or `rg` return no results
  (https://github.com/wincent/command-t/commit/9e8c790ca718b40f2).
- refactor: hide standard error output from `find`, `git` and `rg`
  (https://github.com/wincent/command-t/commit/b229d929ae2a55a7b).
- fix: don't let control characters mess up the display
  (https://github.com/wincent/command-t/issues/402).
command-t-6.0.0-a.2.zip 6.0.0-a.2 2022-08-30 7.0 Greg Hurrell - fix: fix rendering glitches due to interaction with vim-dirvish
  (https://github.com/wincent/command-t/commit/ca959c9437d13ca0).
- feat: teach prompt window to delete a word with `<C-w>`
  (https://github.com/wincent/command-t/commit/0a19ffbe7bed4988).
- fix: avoid aborts on 32-bit systems
  (https://github.com/wincent/command-t/issues/399).
command-t-6.0.0-a.1.zip 6.0.0-a.1 2022-08-28 7.0 Greg Hurrell - fix: gracefully handle |commandt.setup()| calls without a `finders` config.
  (https://github.com/wincent/command-t/commit/e59f7406a565b574).
- refactor: get rid of a potentially confusing diagnostic message
  (https://github.com/wincent/command-t/commit/05b434a7dd3e2963).
- docs: add documentation for the |:CommandTFind|, |:CommandTGit|,
  |:CommandTRipgrep|, and |:CommandTWatchman| commands
  (https://github.com/wincent/command-t/commit/c488f7f41e863398).
command-t-6.0.0-a.0.zip 6.0.0-a.0 2022-08-27 7.0 Greg Hurrell - Rewrite in Lua; for more details see |command-t-upgrading|. Note that this
  is an alpha release, so the new APIs are subject to change.
command-t-5.0.5.zip 5.0.5 2022-07-24 7.0 Greg Hurrell - Teach watchman scanner to favor `watch-project` over `watch` when available (#390, patch from Todd Derr).
command-t-5.0.4.zip 5.0.4 2022-05-28 7.0 Greg Hurrell - Support opening files which contain newlines (#365).
- Guard against possible |E315| on accepting a selection.
- Fix possible |E434| when trying to jump to some help targets.
- Use |execute()| when available to avoid possible issues with potentially nested calls to |:redir|.
- Fix conflict with vim-cool plugin (#354).
- Close match listing after buffer deletion to avoid likely errors on subsequent interactions (#357, patch from Andrius Grabauskas).
- Fix |E116| error opening filenames containing single quotes.
- Deal with |'wildignore'| (and |g:CommandTWildIgnore|) patterns of the form "*pattern" (eg. "*~", which would ignore files created with Vim's default |'backupext'|) (#369, patch from Steve Herrell).
- Turn off |'signcolumn'| in the match listing (#376).
- Teach file scanner to skip over badly encoded strings.
- Teach watchman scanner to tolerate broken watchman installation.
command-t-5.0.3.zip 5.0.3 2018-09-20 7.0 Greg Hurrell - Fix unlisted buffers showing up in |:CommandTBuffer| listing on Neovim.
- Fix edge cases with opening selections in tabs (#315).
- Fix possible degenerate performance of |:CommandTBuffer| and
  |:CommandTMRU| on Neovim.
- Handle missing match listing buffer in Neovim (#342).
command-t-5.0.2.zip 5.0.2 2017-09-07 7.0 Greg Hurrell - Fix a RangeError on 64-bit Windows (#304, patch from Adrian Keet).
- Fix issue switching back to previously opened file in another tab (#306).
- Fix inability to open some help targets with |:CommandTHelp| (#307).
- Similar to #307, make |:CommandTCommand| work with commands containing
  special characters.
- Again similar to #307, prevent special characters in tags from being escaped
  when using |:CommandTTag|.
command-t-5.0.1.zip 5.0.1 2017-08-18 7.0 Greg Hurrell - Fixed inability to open a top-level file with a name matching a previously
  opened file (#295).
- Fixed a related issue where previously opened file would cause a file to be
  opened directly rather than in the desired split/tab (#298).
- Tweaked <c-w> mapping behavior to better match what other readline-ish
  implementations do, especially with respect to moving past punctuation
  (#301).
command-t-5.0.zip 5.0 2017-06-07 7.0 Greg Hurrell - Command-T now uses |:map-<nowait>|, when available, when setting up mappings.
- 'wildignore' filtering is now always performed by producing an equivalent
  regular expression and applying that; previously this only happened with
  the "watchman" file scanner (includes a bug fix from Henric Trotzig).
- Fixed mis-memoization of |:CommandTHelp| and |:CommandTJump| finders
  (whichever one you used first would be used for both).
- Added mapping (<C-d>) to delete a buffer from the buffer list (patch from
  Max Timkovich).
- Added |g:CommandTGitIncludeUntracked| option (patch from Steven Stallion).
- Added |:CommandTOpen|, which implements smart "goto or open" functionality,
  and adjust |g:CommandTAcceptSelectionCommand|,
  |g:CommandTAcceptSelectionTabCommand|,
  |g:CommandTAcceptSelectionSplitCommand|, and
  |g:CommandTAcceptSelectionVSplitCommand| to use it by default. Their default
  values have been changed from "e", "tabe", "sp" and "vs" to "CommandTOpen
  e", "CommandTOpen tabe", "CommandTOpen sp" and "CommandTOpen vs",
  respectively. Use with |'switchbuf'| set to "usetab" for maximum effect.
- Added |g:CommandTWindowFilter| for customizing the filtering expression that
  is used to determine which windows Command-T should not open selected
  files in.
command-t-4.0.zip 4.0 2016-05-17 7.0 Greg Hurrell - A non-leading dot in the search query can now match against dot-files and
  "dot-directories" in non-leading path components.
- Matching algorithm sped up by about 17x (with help from Hanson Wang).
- |g:CommandTInputDebounce| now defaults to 0, as the recent optimizations
  make debouncing largely unnecessary.
- Added |:CommandTHelp| for jumping to locations in the help, and an
  accompanying mapping, |<Plug>(CommandTHelp)|.
- Added |:CommandTLine| for jumping to lines within the current buffer, and a
  corresponding mapping, |<Plug>(CommandTLine)|.
- Added |:CommandTHistory| for jumping to previously entered commands, and a
  corresponding mapping, |<Plug>(CommandTHistory)|.
- Added |:CommandTSearch| for jumping to previously entered searches, and a
  corresponding mapping, |<Plug>(CommandTSearch)|.
- Added |:CommandTCommand| for finding commands, and a corresponding mapping,
  |<Plug>(CommandTCommand)|.
- Added |<Plug>(CommandTMRU)| and |<Plug>(CommandTTag)| mappings.
- The "ruby" and "find" scanners now show numerical progress in the prompt
  area during their scans.
- Removed functionality that was previously deprecated in 2.0.
- Fix inability to type "^" and "|" at the prompt.
- Make it possible to completely disable |'wildignore'|-based filtering by
  setting |g:CommandTWildIgnore| to an empty string.
- The "watchman" file scanner now respects |'wildignore'| and
  |g:CommandTWildIgnore| by construcing an equivalent regular expression and
  using that for filtering.
- Show a warning when hitting |g:CommandTMaxFiles|, and add a corresponding
  |g:CommandTSuppressMaxFilesWarning| setting to suppress the warning.
command-t-3.0.2.zip 3.0.2 2016-02-09 7.0 Greg Hurrell - Minimize flicker on opening and closing the match listing in MacVim.
- Add |CommandTWillShowMatchListing| and |CommandTDidHideMatchListing| "User"
  autocommands.
command-t-3.0.1.zip 3.0.1 2016-01-25 7.0 Greg Hurrell - restore compatiblity with Ruby 1.8.7.
command-t-3.0.zip 3.0 2016-01-19 7.0 Greg Hurrell - change |g:CommandTIgnoreSpaces| default value to 1.
- change |g:CommandTMatchWindowReverse| default value to 1.
- change |g:CommandTMaxHeight| default value to 15.
- try harder to avoid scrolling other buffer when showing or hiding the match
  listing
command-t-2.0.zip 2.0 2015-12-28 7.0 Greg Hurrell - add |:CommandTIgnoreSpaces| option (patch from KJ Tsanaktsidis)
- make Command-T resilient to people deleting its hidden, unlisted buffer
- the match listing buffer now has filetype "command-t", which may be useful
  for detectability/extensibility
- Command-T now sets the name of the match listing buffer according to how it
  was invoked (ie. for the file finder, the name is "Command-T [Files]", for
  the buffer finder, the name is "Command-T [Buffers]", and so on);
  previously the name was a fixed as "GoToFile" regardless of the active
  finder type
- Many internal function names have changed, so if you or your plug-ins are
  calling those internals they will need to be updated:
  - `commandt#CommandTFlush()` is now `commandt#Flush()`
  - `commandt#CommandTLoad()` is now `commandt#Load()`
  - `commandt#CommandTShowBufferFinder()` is now `commandt#BufferFinder()`
  - `commandt#CommandTShowFileFinder()` is now `commandt#FileFinder()`
  - `commandt#CommandTShowJumpFinder()` is now `commandt#JumpFinder()`
  - `commandt#CommandTShowMRUFinder()` is now `commandt#MRUFinder()`
  - `commandt#CommandTShowTagFinder()` is now `commandt#TagFinder()`
- A number of functions have been turned into "private" autoloaded functions,
  to make it clear that they are intended only for internal use:
  - `CommandTAcceptSelection()` is now `commandt#private#AcceptSelection()`
  - `CommandTAcceptSelectionSplit()` is now `commandt#private#AcceptSelectionSplit()`
  - `CommandTAcceptSelectionTab()` is now `commandt#private#AcceptSelectionTab()`
  - `CommandTAcceptSelectionVSplit()` is now `commandt#private#AcceptSelectionVSplit()`
  - `CommandTBackspace()` is now `commandt#private#Backspace()`
  - `CommandTCancel()` is now `commandt#private#Cancel()`
  - `CommandTClear()` is now `commandt#private#Clear()`
  - `CommandTClearPrevWord()` is now `commandt#private#ClearPrevWord()`
  - `CommandTCursorEnd()` is now `commandt#private#CursorEnd()`
  - `CommandTCursorLeft()` is now `commandt#private#CursorLeft()`
  - `CommandTCursorRight()` is now `commandt#private#CursorRight()`
  - `CommandTCursorStart()` is now `commandt#private#CursorStart()`
  - `CommandTDelete()` is now `commandt#private#Delete()`
  - `CommandTHandleKey()` is now `commandt#private#HandleKey()`
  - `CommandTListMatches()` is now `commandt#private#ListMatches()`
  - `CommandTQuickfix()` is now `commandt#private#Quickfix()`
  - `CommandTRefresh()` is now `commandt#private#Refresh()`
  - `CommandTSelectNext()` is now `commandt#private#SelectNext()`
  - `CommandTSelectPrev()` is now `commandt#private#SelectPrev()`
  - `CommandTToggleFocus()` is now `commandt#private#ToggleFocus()`
- add |g:CommandTRecursiveMatch| option
- stop distribution as a vimball in favor of a zip archive
- don't clobber |alternate-file| name when opening Command-T match listing
  (patch from Jerome Castaneda)
- add |g:CommandTCursorColor| option
- expose mappings for |:CommandT| and |:CommandTBuffer| using `<Plug>`
  mappings |<Plug>(CommandT)| and |<Plug>(CommandT)|
- add `<Leader>j` mapping to |:CommandTJump|, via |<Plug>(CommandTJump)|
  (defined only if no pre-existing mapping exists)
command-t-1.13.vba 1.13 2015-04-29 7.0 Greg Hurrell - avoid "W10: Warning: Changing a readonly file" when starting Vim in
  read-only mode (ie. as `view` or with the `-R` option)
- fix infinite loop on |<Tab>| (regression introduced in 1.12)
command-t-1.12.vba 1.12 2015-04-10 7.0 Greg Hurrell - add |:CommandTLoad| command
- fix rare failure to restore cursor color after closing Command-T (patch from
  Vlad Seghete)
- doc fixes and updates (patches from Daniel Hahler and Nicholas T.)
- make it possible to force reloading of the plug-in (patch from Daniel
  Hahler)
- add |g:CommandTEncoding| option, to work around rare encoding compatibility
  issues
- fix error restoring cursor highlights involving some configurations (patch
  from Daniel Hahler)
- skip set-up of |<Esc>| key mapping on rxvt terminals (patch from Daniel
  Hahler)
- add |g:CommandTGitScanSubmodules| option, which can be used to recursively
  scan submodules when the "git" file scanner is used (patch from Ben Boeckel)
- fix for not falling back to "find"-based scanner when a Watchman-related
  error occurs
command-t-1.11.4.vba 1.11.4 2014-11-04 7.0 Greg Hurrell - fix infinite loop on Windows when |g:CommandTTraverseSCM| is set to a value
  other than "pwd" (bug present since 1.11)
- handle unwanted split edgecase when |'hidden'| is set, the current buffer is
  modified, and it is visible in more than one window
command-t-1.11.3.vba 1.11.3 2014-10-11 7.0 Greg Hurrell - ignore impromperly encoded filenames (patch from Sherzod Gapirov)
- fix failure to update path when using |:cd| in conjunction with
  |g:CommandTTraverseSCM| set to "pwd" (bug present since 1.11.2)
command-t-1.11.2.vba 1.11.2 2014-09-01 7.0 Greg Hurrell - fix error while using Command-T outside of an SCM repo (bug present since
  1.11.1)
command-t-1.11.1.vba 1.11.1 2014-08-29 7.0 Greg Hurrell - compatibility fixes with Ruby 1.8.6 (patch from Emily Strickland)
- compatibility fixes with Ruby 1.8.5
- fix 'wildignore' being ignored (bug present since 1.11)
- fix current working directory being ignored when |g:CommandTTraverseSCM| is
  set to "pwd" (bug present since 1.11)
- performance improvements
command-t-1.11.vba 1.11 2014-08-15 7.0 Greg Hurrell - improve edge-case handling in match results window code (patches from
  Richard Feldman)
- add "git" file scanner (patch from Patrick Hayes)
- speed-up when 'wildignore' is unset (patch from Patrick Hayes)
- add |g:CommandTTraverseSCM| setting which anchors Command-T's file finder to
  the nearest SCM directory (based on patches from David Szotten and Ben
  Osheroff)
- add AppStream metadata (patch from Vít Ondruch)
command-t-1.10.vba 1.10 2014-07-16 7.0 Greg Hurrell - improve tag finder performance by caching tag lists (patch from Artem
  Nezvigin)
- consider the |'autowriteall'| option when deciding whether to open a file in
  a split
- make selection acceptance commands configurable (patch from Ole Petter Bang)
- add <C-w> mapping to delete previous word of the match prompt (patch from
  Kevin Webster)
- try harder to always clear status line after closing the match listing
  (patch from Ton van den Heuvel)
- don't allow MRU autocommands to produce errors when the extension has not
  been compiled
- add |g:CommandTIgnoreCase| and |g:CommandTSmartCase| options, providing
  support for case-sensitive matching (based on patch from Jacek Wysocki)
command-t-1.9.1.vba 1.9.1 2014-05-30 7.0 Greg Hurrell - include the file in the release vimball archive that was missing from the
  1.9 release
command-t-1.9.vba 1.9 2014-05-25 7.0 Greg Hurrell - improved startup time using Vim's autload mechanism (patch from Ross
  Lagerwall)
- added MRU (most-recently-used) buffer finder (patch from Ton van den Heuvel)
- fixed edge case in matching algorithm which could cause spurious matches
  with queries containing repeated characters
- fixed slight positive bias in the match scoring algorithm's weighting of
  matching characters based on distance from last match
- tune memoization in match scoring algorithm, yield a more than 10% speed
  boost
command-t-1.8.vba 1.8 2014-04-01 7.0 Greg Hurrell - taught Watchman file scanner to use the binary protocol instead of JSON,
  roughly doubling its speed
- build changes to accommodate MinGW (patch from Roland Puntaier)
command-t-1.7.vba 1.7 2014-03-10 7.0 Greg Hurrell - added |g:CommandTInputDebounce|, which can be used to improve responsiveness
  in large file hierarchies (based on patch from Yiding Jia)
- added a potentially faster file scanner which uses the `find` executable
  (based on patch from Yiding Jia)
- added a file scanner that knows how to talk to Watchman
  (https://github.com/facebook/watchman)>- added |g:CommandTFileScanner|, which can be used to switch file scanners
- fix processor count detection on some platforms (patch from Pavel Sergeev)
command-t-1.6.1.vba 1.6.1 2013-12-23 7.0 Greg Hurrell - defer processor count detection until runtime (makes it possible to sensibly
  build Command-T on one machine and use it on another)
command-t-1.6.vba 1.6 2013-12-16 7.0 Greg Hurrell - on systems with POSIX threads (such as OS X and Linux), Command-T will use
  threads to compute match results in parallel, resulting in a large speed
  boost that is especially noticeable when navigating large projects
command-t-1.5.1.vba 1.5.1 2013-09-24 7.0 Greg Hurrell - exclude large benchmark fixture file from source exports (patch from Vít
  Ondruch)
command-t-1.5.vba 1.5 2013-09-18 7.0 Greg Hurrell - don't scan "pathological" filesystem structures (ie. circular or
  self-referential symlinks; patch from Marcus Brito)
- gracefully handle files starting with "+" (patch from Ivan Ukhov)
- switch default selection highlight color for better readability (suggestion
  from André Arko), but make it possible to configure via the
  |g:CommandTHighlightColor| setting
- added a mapping to take the current matches and put then in the quickfix
  window
- performance improvements, particularly noticeable with large file
  hierarchies
- added |g:CommandTWildIgnore| setting (patch from Paul Jolly)
command-t-1.4.vba 1.4 2012-06-20 7.0 Greg Hurrell - added |:CommandTTag| command (patches from Noon Silk)
- turn off |'colorcolumn'| and |'relativenumber'| in the match window (patch
  from Jeff Kreeftmeijer)
- documentation update (patch from Nicholas Alpi)
- added |:CommandTMinHeight| option (patch from Nate Kane)
- highlight (by underlining) matched characters in the match listing (requires
  Vim to have been compiled with the +conceal feature, which is available in
  Vim 7.3 or later; patch from Steven Moazami)
- added the ability to flush the cache while the match window is open using
  <C-f>
command-t-1.3.1.vba 1.3.1 2011-12-18 7.0 Greg Hurrell - fix jumplist navigation under Ruby 1.9.x (patch from Woody Peterson)
command-t-1.3.vba 1.3 2011-11-28 7.0 Greg Hurrell - added the option to maintain multiple caches when changing among
  directories; see the accompanying |g:CommandTMaxCachedDirectories| setting
- added the ability to navigate using the Vim jumplist (patch from Marian
  Schubert)
command-t-1.2.1.vba 1.2.1 2011-05-01 7.0 Greg Hurrell - Remove duplicate copy of the documentation that was causing "Duplicate tag"
  errors
- Mitigate issue with distracting blinking cursor in non-GUI versions of Vim
  (patch from Steven Moazami)
command-t-1.2.vba 1.2 2011-04-30 7.0 Greg Hurrell - added |g:CommandTMatchWindowReverse| option, to reverse the order of items
  in the match listing (patch from Steven Moazami)
command-t-1.1b2.vba 1.1b2 2011-03-27 7.0 Greg Hurrell - fix a glitch in the release process; the plugin itself is unchanged since 1.1b
command-t-1.1b.vba 1.1b 2011-03-27 7.0 Greg Hurrell - add |:CommandTBuffer| command for quickly selecting among open buffers
command-t-1.0.1.vba 1.0.1 2011-01-05 7.2 Greg Hurrell - work around bug when mapping |:CommandTFlush|, wherein the default mapping
  for |:CommandT| would not be set up
- clean up when leaving the Command-T buffer via unexpected means (such as
  with <C-W k> or similar)
command-t-1.0.vba 1.0 2010-11-26 7.2 Greg Hurrell - make relative path simplification work on Windows
command-t-1.0b.vba 1.0b 2010-11-05 7.2 Greg Hurrell - work around platform-specific Vim 7.3 bug seen by some users (wherein
  Vim always falsely reports to Ruby that the buffer numbers is 0)
- re-use the buffer that is used to show the match listing, rather than
  throwing it away and recreating it each time Command-T is shown; this
  stops the buffer numbers from creeping up needlessly
command-t-0.8.1.vba 0.8.1 2010-09-14 7.2 Greg Hurrell - fix mapping issues for users who have set |'notimeout'| (patch from Sung Pae)
command-t-0.8.vba 0.8 2010-08-19 7.2 Greg Hurrell - overrides for the default mappings can now be lists of strings, allowing multiple mappings to be defined for any given action
- <Leader>t mapping only set up if no other map for |:CommandT| exists (patch from Scott Bronson)
- prevent folds from appearing in the match listing
- tweaks to avoid the likelihood of "Not enough room" errors when trying to open files
- watch out for "nil" windows when restoring window dimensions
- optimizations (avoid some repeated downcasing)
- move all Ruby files under the "command-t" subdirectory and avoid polluting the "Vim" module namespace
command-t-0.8b.vba 0.8b 2010-07-11 7.0 Greg Hurrell - large overhaul if the scoring algorithm to make the ordering of returned results more intuitive; given the scope of the changes and room for optimization of the new algorithm, this release is labelled as "beta"
command-t-0.7.vba 0.7 2010-06-10 7.0 Greg Hurrell - handle more |'wildignore'| patterns by delegating to VIM's own |expand()| function; with this change it is now viable to exclude patterns such as 'vendor/rails/**' in addition to filename-only patterns like '*.o' and '.git' (patch from Mike Lundy)
- always sort results alphabetically for empty search strings; this eliminates filesystem-specific variations (patch from Mike Lundy)
command-t-0.6.vba 0.6 2010-04-29 7.0 Greg Hurrell - |:CommandT| now accepts an optional parameter to specify the starting directory, temporarily overriding the usual default of VIM's |:pwd|
- fix truncated paths when operating from root directory
command-t-0.5.1.vba 0.5.1 2010-04-11 7.0 Greg Hurrell - fix for Ruby 1.9 compatibility regression introduced in 0.5
- documentation enhancements, specifically targetted at Windows users
command-t.vba 0.5 2010-04-03 7.0 Greg Hurrell - |:CommandTFlush| now re-evaluates settings, allowing changes made via |:let| to be picked up without having to restart VIM
- fix premature abort when scanning very deep directory hierarchies
- remove broken |<Esc>| key mapping on vt100 and xterm terminals
- provide settings for overriding default mappings
- minor performance optimization
command-t.vba 0.4 2010-03-27 7.0 Greg Hurrell - add |g:CommandTMatchWindowAtTop| setting (patch from Zak Johnson)
- documentation fixes and enhancements
- internal refactoring and simplification
command-t.vba 0.3 2010-03-24 7.0 Greg Hurrell - add |g:CommandTMaxHeight| setting for controlling the maximum height of the match window (patch from Lucas de Vries)
- fix bug where |'list'| setting might be inappropriately set after dismissing Command-T
- compatibility fix for different behaviour of "autoload" under Ruby 1.9.1
- avoid "highlight group not found" warning when run under a version of VIM that does not have syntax highlighting support
- open in split when opening normally would fail due to |'hidden'| and |'modified'| values
command-t.vba 0.2 2010-03-23 7.0 Greg Hurrell - compatibility fixes for compilation under Ruby 1.9 series
- compatibility fixes for compilation under Ruby 1.8.5
- compatibility fixes for Windows and other non-UNIX platforms
- suppress "mapping already exists" message if <Leader>t mapping is already defined when plug-in is loaded
- exclude paths based on |'wildignore'| setting rather than a hardcoded regular expression
command-t.vba 0.1 2010-03-22 7.2 Greg Hurrell Initial upload
ip used for rating: 216.73.216.130

Questions about Vim should go to the maillist. Help Uganda.     Vim at Github