ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Calendar Popup

by blalor ST4

Sublime Text package showing a cal-style popup

Details

Installs

  • Total 10
  • Win 2
  • Mac 2
  • Linux 6
Aug 21 Aug 20 Aug 19 Aug 18 Aug 17 Aug 16 Aug 15 Aug 14 Aug 13 Aug 12 Aug 11 Aug 10 Aug 9 Aug 8 Aug 7 Aug 6 Aug 5 Aug 4 Aug 3 Aug 2 Aug 1 Jul 31 Jul 30 Jul 29 Jul 28 Jul 27 Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0

Readme

Source
raw.​githubusercontent.​com

Calendar Popup

Calendar Popup is a Sublime Text package that shows a cal-style calendar in a popup near the cursor.

The current date is highlighted when it appears in the rendered month range.

Commands

show_calendar

Shows a calendar popup.

Arguments:

  • before — number of months before the current month to include. Defaults to 0.
  • after — number of months after the current month to include. Defaults to 0.

Examples:

{ "command": "show_calendar" }

Shows the current month.

example of popup

{ "command": "show_calendar", "args": { "before": 1, "after": 1 } }

Shows the previous month, current month, and next month in a row, similar to:

cal -B 1 -A 1

example of popup with range

Command Palette Entries

  • Calendar: Show Current Month
  • Calendar: Show Previous, Current and Next Month