summaryrefslogtreecommitdiffstats
path: root/ui/src/execute/mod.rs
blob: e8933501b41e060dcdfdb73ee7f468237f90dd10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*! A parser module for user commands passed through the Ex mode.
*/
use nom::{digit, };
use std;
pub mod actions;
pub use actions::*;


named!(
    usize_c<usize>,
    map_res!(
        map_res!(ws!(digit), std::str::from_utf8),
        std::str::FromStr::from_str
    )
);

named!(goto<Action>,
       preceded!(tag!("b "),
       map!(call!(usize_c), |v| Action::ViewMailbox(v))
      ));

//named!(sort<&str>,
//       preceded!(tag!("sort "),
//       map_res!(call!(alpha), std::str::from_utf8))
//      );

named!(threaded<Action>,
       map!(ws!(tag!("threaded")), |_| Action::MailListing(MailListingAction::ToggleThreaded)));
named!(toggle<Action>,
       preceded!(tag!("toggle "),
       alt_complete!( threaded )));

named!(pub parse_command<Action>, 
    alt_complete!( goto | toggle)
        );