Add select command which opens cell

This commit is contained in:
Jonathan Turner
2019-05-29 16:02:36 +12:00
parent 2afa785e0e
commit 8e00cd43a8
4 changed files with 38 additions and 1 deletions

View File

@@ -17,7 +17,6 @@ impl Scope {
crate fn evaluate_expr(expr: &ast::Expression, scope: &Scope) -> Result<Value, ShellError> {
use ast::*;
match expr {
Expression::Leaf(l) => Ok(evaluate_leaf(l)),
Expression::Parenthesized(p) => evaluate_expr(&p.expr, scope),