Skip to content

Releases: wincent/command-t

1.1b

19 Jan 22:04
Compare
Choose a tag to compare
1.1b Pre-release
Pre-release
  • Add :CommandTBuffer command for quickly selecting among open buffers.

1.0.1

19 Jan 22:04
Compare
Choose a tag to compare
  • 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 or similar).

1.0

19 Jan 22:04
Compare
Choose a tag to compare
1.0
  • Make relative path simplification work on Windows.

1.0b

19 Jan 22:05
Compare
Choose a tag to compare
1.0b Pre-release
Pre-release
  • 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

19 Jan 22:05
Compare
Choose a tag to compare
0.9
  • Use relative paths when opening files inside the current working directory in order to keep buffer listings as brief as possible (patch from Matthew Todd).

0.8.1

19 Jan 22:05
Compare
Choose a tag to compare
  • Fix mapping issues for users who have set 'notimeout' (patch from Sung Pae).

0.8

19 Jan 22:06
Compare
Choose a tag to compare
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

19 Jan 22:06
Compare
Choose a tag to compare
0.8b Pre-release
Pre-release
  • Large overhaul of 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".

0.7

19 Jan 22:06
Compare
Choose a tag to compare
0.7
  • 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).

0.6

19 Jan 22:06
Compare
Choose a tag to compare
0.6
  • :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.