use super::*;
#[derive(Clone, Debug, Eq, PartialEq)]
pub enum NormalCommandKind {
OneLine,
MultiLine,
}
#[derive(Clone, Eq, PartialEq)]
pub struct NormalCommand {
pub cmd: String,
pub kind: NormalCommandKind,
pub options: CommandOptions,
pub pattern: CommandPattern,
pub body: Literal<String>,
}