Releases: wincent/command-t
Releases · wincent/command-t
6.0.0-b.1
6.0.0-b.0
6.0.0-a.4
- fix: use correct
git ls-files
switch whenscanners.git.untracked
istrue
(#405). - fix: make Watchman scanner work with a path argument (c7020a44cfddfb87).
- feat: show "fallback" in prompt title if a fallback scanner kicks in (c16b2721fdad1d0b).
6.0.0-a.3
- fix: fix build problem on 32-bit systems; this was a regression introduced in 6.0.0-a.2 (6c8e2a3e3b5acd00).
- docs: drop unnecessary
{ remap = true }
from mapping instructions (#401) - feat: implement fallback for when
find
,git
, orrg
return no results (9e8c790ca718b40f2). - refactor: hide standard error output from
find
,git
andrg
(b229d929ae2a55a7b). - fix: don't let control characters mess up the display (#402).
6.0.0-a.2
- fix: fix rendering glitches due to interaction with vim-dirvish (ca959c9437d13ca0).
- feat: teach prompt window to delete a word with
<C-w>
(0a19ffbe7bed4988). - fix: avoid aborts on 32-bit systems (#399).
6.0.0-a.1
- fix: gracefully handle
commandt.setup()
calls without afinders
config. (e59f7406a565b574). - refactor: get rid of a potentially confusing diagnostic message (05b434a7dd3e2963).
- docs: add documentation for the
:CommandTFind
,:CommandTGit
,:CommandTRipgrep
, and:CommandTWatchman
commands (c488f7f41e863398).
Full Changelog: 6.0.0-a.0...6.0.0-a.1
6.0.0-a.0
- 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.
5.0.5
5.0.4
- 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'
(andg: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.