mirror of
https://salsa.debian.org/dskoll/remind.git
synced 2026-04-16 06:18:47 +02:00
Add keyboard shortcuts to change view.
This commit is contained in:
@@ -82,6 +82,10 @@ In the monthly view, the Next and Previous navigation buttons and keyboard
|
||||
shortcuts move by one month. In all other views, they move by one week.
|
||||
This is true even for views that display multiple weeks.
|
||||
|
||||
You can press the keys \fB1\fR, \fB2\fR, \fB4\fR or \fBm\fR over the
|
||||
main calendar window to change the view to one week, two weeks, four weeks
|
||||
or one month, respectively.
|
||||
|
||||
.SH ADDING REMINDERS
|
||||
To add a reminder, click button 1 in any day number in the calendar.
|
||||
The \fBAdd Reminder...\fR dialog will pop up, with values preselected for
|
||||
|
||||
@@ -876,6 +876,10 @@ proc CreateCalWindow { dayNames } {
|
||||
bind . <KeyPress-Prior> ".b.prev flash; .b.prev invoke"
|
||||
bind . <KeyPress-Next> ".b.next flash; .b.next invoke"
|
||||
bind . <KeyPress-Home> ".b.this flash; .b.this invoke"
|
||||
bind . <KeyPress-1> "SetView Week-1"
|
||||
bind . <KeyPress-2> "SetView Week-2"
|
||||
bind . <KeyPress-4> "SetView Week-4"
|
||||
bind . <KeyPress-m> "SetView Month"
|
||||
catch { bind . <KeyPress-KP_Home> ".b.this flash; .b.this invoke" }
|
||||
catch { bind . <KeyPress-KP_Prior> ".b.prev flash; .b.prev invoke" }
|
||||
catch { bind . <KeyPress-KP_Next> ".b.next flash; .b.next invoke" }
|
||||
|
||||
Reference in New Issue
Block a user