diff options
| author | Dirk-Jan C. Binnema <djcb@djcbsoftware.nl> | 2023-09-13 23:54:45 +0300 |
|---|---|---|
| committer | Dirk-Jan C. Binnema <djcb@djcbsoftware.nl> | 2023-09-24 17:29:08 +0300 |
| commit | 2d20074b9956fc92425259e0e00db85be8f4d6f5 (patch) | |
| tree | 394314f817e35d6419b022ca802c85518f903c03 /mu/mu-cmd.cc | |
| parent | 1a3dc4686611e0dd15ebe97e0512db061d0ed617 (diff) | |
mu-move: add new move sub command
Add sub-command to move messages; add tests and docs.
Fixes #157
Diffstat (limited to 'mu/mu-cmd.cc')
| -rw-r--r-- | mu/mu-cmd.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mu/mu-cmd.cc b/mu/mu-cmd.cc index 8b56f83..62e6791 100644 --- a/mu/mu-cmd.cc +++ b/mu/mu-cmd.cc @@ -140,6 +140,8 @@ Mu::mu_cmd_execute(const Options& opts) try { return with_writable_store(mu_cmd_add, opts); case Options::SubCommand::Remove: return with_writable_store(mu_cmd_remove, opts); + case Options::SubCommand::Move: + return with_writable_store(mu_cmd_move, opts); case Options::SubCommand::Index: return with_writable_store(mu_cmd_index, opts); |
