1
0
mirror of https://github.com/sharkdp/bat synced 2026-07-26 17:31:42 +00:00

Add support for wildcards in Windows CMD (#329)

Windows does not support wildcard expansion in cmd, this adds 'wild' crate (as discussed in #309) that handles everything transparently, so wildcards work everywhere.

Fixes #309
This commit is contained in:
Richard Hozák
2018-10-03 22:59:11 +02:00
committed by David Peter
parent 0d71968615
commit b39e28d2c8
4 changed files with 20 additions and 1 deletions
+1
View File
@@ -16,6 +16,7 @@ extern crate console;
extern crate directories;
extern crate git2;
extern crate syntect;
extern crate wild;
mod app;
mod assets;