Skip to content

Commit

Permalink
Merge branch 'pull/414'
Browse files Browse the repository at this point in the history
Closes: wincent/command-t#414

* pull/414:
  docs: update AUTHORS and HISTORY sections
  fix: correct git scanner options location
  • Loading branch information
Padmamanickam authored and wincent committed Dec 1, 2022
2 parents 181045f + 426f997 commit d9c011d
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 27 deletions.
1 change: 1 addition & 0 deletions .mailmap
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Andrius Grabauskas <etherandrius@gmail.com>
Cody Buell <cody@codybuell.com>
Greg Hurrell <greg@hurrell.net> <greg.hurrell@liferay.com>
Greg Hurrell <greg@hurrell.net> <win@wincent.com>
Greg Hurrell <greg@hurrell.net> <wincent@github.com>
Expand Down
52 changes: 27 additions & 25 deletions doc/command-t.txt
Original file line number Diff line number Diff line change
Expand Up @@ -440,30 +440,31 @@ Other contributors that have submitted patches include, in alphabetical order:
Artem Nezvigin Paul Jolly
Ben Boeckel Pavel Sergeev
Brendan Mulholland Rainux Luo
Daniel Burgess Richard Feldman
Daniel Hahler Roland Puntaier
David Emett Ross Lagerwall
David Szotten Sam Morris
Douglas Drumond Scott Bronson
Emily Strickland Seth Fowler
Felix Tjandrawibawa Sherzod Gapirov
Gary Bernhardt Shlomi Fish
Henric Trotzig Stefan Schmidt
Ivan Ukhov Stephen Gelman
Jakob Pfender Steve Herrell
Jeff Kreeftmeijer Steven Moazami
Jerome Castaneda Steven Stallion
Joe Lencioni Sung Pae
KJ Tsanaktsidis Thomas Pelletier
Kevin Webster Todd Derr
Kien Nguyen Duc Ton van den Heuvel
Lucas de Vries Victor Hugo Borja
Marcus Brito Vlad Seghete
Marian Schubert Vít Ondruch
Matthew Todd Woody Peterson
Max Timkovich Yan Pritzker
Mike Lundy Zak Johnson
Nadav Samet xiaodezhang
Cody Buell Richard Feldman
Daniel Burgess Roland Puntaier
Daniel Hahler Ross Lagerwall
David Emett Sam Morris
David Szotten Scott Bronson
Douglas Drumond Seth Fowler
Emily Strickland Sherzod Gapirov
Felix Tjandrawibawa Shlomi Fish
Gary Bernhardt Stefan Schmidt
Henric Trotzig Stephen Gelman
Ivan Ukhov Steve Herrell
Jakob Pfender Steven Moazami
Jeff Kreeftmeijer Steven Stallion
Jerome Castaneda Sung Pae
Joe Lencioni Thomas Pelletier
KJ Tsanaktsidis Todd Derr
Kevin Webster Ton van den Heuvel
Kien Nguyen Duc Victor Hugo Borja
Lucas de Vries Vlad Seghete
Marcus Brito Vít Ondruch
Marian Schubert Woody Peterson
Matthew Todd Yan Pritzker
Max Timkovich Zak Johnson
Mike Lundy xiaodezhang
Nadav Samet

This list produced with:

Expand Down Expand Up @@ -596,7 +597,8 @@ HISTORY *command-t-history*

main (not yet released) ~

- ...
- fix: actually respect `scanners.git.submodules` and `scanners.git.untracked`
options in |commandt.setup()| (https://github.com/wincent/command-t/pull/414).

6.0.0-b.0 (21 October 2022) ~

Expand Down
4 changes: 2 additions & 2 deletions lua/wincent/commandt/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -203,9 +203,9 @@ local default_options = {
directory = vim.fn.shellescape(directory)
end
local command = 'git ls-files --exclude-standard --cached -z'
if options.submodules then
if options.scanners.git.submodules then
command = command .. ' --recurse-submodules'
elseif options.untracked then
elseif options.scanners.git.untracked then
command = command .. ' --others'
end
if directory ~= '' then
Expand Down

0 comments on commit d9c011d

Please sign in to comment.