Commit 4c039901 authored by Federico G. Schwindt's avatar Federico G. Schwindt Committed by Lasse Karstensen

Sort options and remove undocumented alias

parent 44d9e966
......@@ -867,6 +867,10 @@ handle_keypress(int ch)
if (page_start + l_points < n_ptarray - 1)
page_start += l_points;
break;
case 'd':
hide_unseen = 1 - hide_unseen;
rebuild = 1;
break;
case 'g':
current = 0;
page_start = 0;
......@@ -875,10 +879,6 @@ handle_keypress(int ch)
current = n_ptarray - 1;
page_start = current - l_points + 1;
break;
case 'd':
hide_unseen = 1 - hide_unseen;
rebuild = 1;
break;
case 'v':
verbosity++;
if (VSC_LevelDesc(verbosity) == NULL)
......@@ -886,7 +886,6 @@ handle_keypress(int ch)
rebuild = 1;
break;
case 'q':
case 'Q':
keep_running = 0;
return;
case '\003': /* Ctrl-C */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment