Releases: wincent/command-t
Releases · wincent/command-t
1.1b
1.0.1
1.0
1.0b
- 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.
0.9
0.8.1
0.8
- Overrides for the default mappings can now be lists of strings, allowing multiple mappings to be defined for any given action.
- 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.
0.8b
0.7
- Handle more
'wildignore'
patterns by delegating to Vim's ownexpand()
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).