diff options
author | Frederic Culot <calcurse@culot.org> | 2008-02-11 21:26:00 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2008-02-11 21:26:00 +0000 |
commit | 45199e1df924a4ffb3a481caea79891318e15c62 (patch) | |
tree | bf02754c5d783b920e0d7e197595c2cecca8ff65 /src/utils.c | |
parent | 52340fa0e132766e9a0d1e5a95d45282725cdf97 (diff) | |
download | calcurse-45199e1df924a4ffb3a481caea79891318e15c62.zip |
TODO list updated
status bar updated to display the new 'N' (edit note) and '>' (view note)
keybindings
online help pages added for 'N' and '>' keybindings
Diffstat (limited to 'src/utils.c')
-rwxr-xr-x | src/utils.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/utils.c b/src/utils.c index 6cdc246..d7a9b36 100755 --- a/src/utils.c +++ b/src/utils.c @@ -1,4 +1,4 @@ -/* $calcurse: utils.c,v 1.42 2008/02/10 16:29:50 culot Exp $ */ +/* $calcurse: utils.c,v 1.43 2008/02/11 21:26:01 culot Exp $ */ /* * Calcurse - text-based organizer @@ -417,6 +417,8 @@ status_bar(void) binding_t draw = { " ^R", _("Redraw") }; binding_t appt = { " ^A", _("Add Appt") }; binding_t todo = { " ^T", _("Add Todo") }; + binding_t enote = { " N", _("EditNote") }; + binding_t vnote = { " >", _("ViewNote") }; binding_t eday = { "^HL", _("-+1 Day") }; binding_t ewek = { "^KJ", _("-+1 Week") }; binding_t othr = { " O", _("OtherCmd") }; @@ -427,12 +429,12 @@ status_bar(void) &todo, &conf, &othr, &eday, &ewek, &draw, &othr, /* appointment keys */ &help, &quit, &save, &export, &add, &del, &edit, &view, &rept, - &updn, &flag, &othr, &conf, &togo, &appt, &todo, &eday, &ewek, - &tab, &draw, &othr, + &updn, &flag, &othr, &enote, &vnote, &appt, &todo, &eday, &ewek, + &conf, &togo, &tab, &draw, &othr, /* todo keys */ &help, &quit, &save, &export, &add, &del, &edit, &view, &prio, - &updn, &tab, &othr, &conf, &togo, &appt, &todo, &eday, &ewek, - &draw, &othr + &updn, &tab, &othr, &enote, &vnote, &appt, &todo, &eday, &ewek, + &conf, &togo, &draw, &othr }; /* Total length of a command. */ |