Skip to content

Commit

Permalink
Merge branch 'pull/426'
Browse files Browse the repository at this point in the history
Closes: #426

* pull/426:
  docs: update `command-t-authors`
  refactor: remove use of deprecated `vim.tbl_flatten`
  • Loading branch information
wincent committed Sep 30, 2024
2 parents af25c00 + b92bfd4 commit 75b8ad8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions doc/command-t.txt
Original file line number Diff line number Diff line change
Expand Up @@ -616,17 +616,17 @@ Other contributors that have submitted patches include, in alphabetical order:
Jakob Pfender Steven Stallion
Jeff Kreeftmeijer Sung Pae
Jerome Castaneda Thomas Pelletier
Joe Lencioni Todd Derr
KJ Tsanaktsidis Tom Spurling
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
Joe Lencioni Timothy Reen
KJ Tsanaktsidis Todd Derr
Kevin Webster Tom Spurling
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

This list produced with:

Expand Down
2 changes: 1 addition & 1 deletion lua/wincent/commandt/private/validate.lua
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ validate_table = function(path, context, options, spec, defaults, config)
end
end
end
return vim.tbl_flatten(errors)
return vim.iter(errors):flatten():totable()
end

return validate

0 comments on commit 75b8ad8

Please sign in to comment.