keybinding changed: CTRL-L is now used to redraw screen

keybinding added: R to repeat an item
This commit is contained in:
Frederic Culot
2006-08-06 14:38:05 +00:00
parent ef2d0beefd
commit 9fb69d607f
2 changed files with 18 additions and 11 deletions

View File

@@ -1,4 +1,4 @@
/* $calcurse: calcurse.c,v 1.3 2006/08/02 21:21:08 culot Exp $ */
/* $calcurse: calcurse.c,v 1.4 2006/08/06 14:38:05 culot Exp $ */
/*
* Calcurse - text-based organizer
@@ -236,8 +236,7 @@ int main(int argc, char **argv)
}
break;
case 'R':
case 'r':
case CTRL('L'):
reinit_wins();
break;
@@ -313,6 +312,11 @@ int main(int argc, char **argv)
do_storage = true;
break;
case 'R':
case 'r':
recur_repeat_item(sel_year, sel_month, sel_day, hilt_app, colr);
break;
case '?': /* Online help system */
status_bar(which_pan, colr, nc_bar, nl_bar);
help_screen(which_pan, colr);