Merge branch 'main' of https://github.com/nushell/engine-q into source-command

This commit is contained in:
Tanishq Kancharla
2021-10-05 22:16:07 -04:00
33 changed files with 1405 additions and 79 deletions

View File

@ -83,6 +83,14 @@ impl Highlighter for NuHighlighter {
Style::new().fg(nu_ansi_term::Color::Yellow).bold(),
next_token,
)),
FlatShape::Filepath => output.push((
Style::new().fg(nu_ansi_term::Color::Yellow).bold(),
next_token,
)),
FlatShape::GlobPattern => output.push((
Style::new().fg(nu_ansi_term::Color::Yellow).bold(),
next_token,
)),
FlatShape::Variable => output.push((
Style::new().fg(nu_ansi_term::Color::Blue).bold(),
next_token,