itchyny / calendar.vim

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

List or Agenda view #88

Closed schmeisers closed 9 years ago

schmeisers commented 9 years ago

I would be great to have a list or agenda view. I run calendar.vim in a small tmux pane and it would be very convenient to have a view that is a condensed list of upcoming events with their start and end times.

foulowl commented 9 years ago

This is an awesome idea. Would you consider bountysource for something like this?

itchyny commented 9 years ago

I implemented the agenda view. You can enable by adding 'agenda' to g:calendar_views.

let g:calendar_views = [ 'year', 'month', 'agenda', 'day_3', 'clock' ]

You can switch between the views with >, < keys. You can also open the agenda view directly by the following command (after you have added 'agenda' to g:calendar_views).

:Calendar -view=agenda
schmeisers commented 9 years ago

Awesome! Thanks!

On Jun 27, 2015, at 5:55 AM, itchyny notifications@github.com wrote:

I implemented agenda view. You can enable by adding agenda to g:calendar_views.

let g:calendar_views = [ 'year', 'month', 'agenda', 'day_3', 'clock' ] You can switch the views with >, < keys. You can also open the agenda view directly by the following command (after you have added 'agenda' to g:calendar_views).

:Calendar -view=agenda — Reply to this email directly or view it on GitHub.