itchyny / calendar.vim

A calendar application for Vim
MIT License
1.95k stars 71 forks source link

Move tasks up/down aka changing priority #195

Closed mmskv closed 2 years ago

mmskv commented 2 years ago

Thank you for making this awesome application!

I can't figure out how to move tasks up or down in the task list, though if i move task in google calendar, it moves in the application's list after a while.

By the way, is there a way to avoid closing task list when pressing <Esc>? I have a habit of pressing <Esc> before navigating in vim to ensure that I'm in a normal mode

itchyny commented 2 years ago

C-k is mapped to <Plug>(calendar_move_up) and C-j is mapped to <Plug>(calendar_move_down)

mmskv commented 2 years ago

Thank you very much!