add back some shell coloring

This commit is contained in:
Jonathan Turner
2019-06-23 07:47:29 +12:00
parent 37c4fb92f8
commit dc081151bc
2 changed files with 58 additions and 16 deletions

View File

@ -94,10 +94,10 @@ pub struct PathNode {
#[derive(Debug, Clone, Eq, PartialEq, Ord, PartialOrd, Getters, new)]
pub struct PipelineElement {
pre_ws: Option<Span>,
pub pre_ws: Option<Span>,
#[get = "crate"]
call: Spanned<CallNode>,
post_ws: Option<Span>,
pub post_ws: Option<Span>,
}
impl PipelineElement {