Updated completion

This commit is contained in:
Moritz Lipp 2010-07-05 17:57:19 +02:00
parent 6d321e2ec5
commit 40a0a7cf9c

View File

@ -2572,9 +2572,10 @@ isc_completion(Argument* argument)
for(i = 0; i < n_items; i++)
{
if((i >= (current_item - lh) && (i <= current_item + uh)) ||
if((n_items > 1) && (
(i >= (current_item - lh) && (i <= current_item + uh)) ||
(i < n_completion_items && current_item < lh) ||
(i >= (n_items - n_completion_items) && (current_item >= (n_items - uh)))
(i >= (n_items - n_completion_items) && (current_item >= (n_items - uh))))
)
gtk_widget_show(rows[i].row);
else
@ -2582,7 +2583,7 @@ isc_completion(Argument* argument)
}
if(command_mode)
temp = g_strconcat(":", rows[current_item].command, NULL);
temp = g_strconcat(":", rows[current_item].command, (n_items == 1) ? " " : NULL, NULL);
else
temp = g_strconcat(":", previous_command, " ", rows[current_item].command, NULL);