There was never a possible way to set the count for the history stepping and
the great editor vim has also no count for the history stepping, so there's no
need to have it in vimb browser too.
Reset the zoomlevel to the default value.
.SS History
.TP
-.BI [ N "]hist-prev, [" N "]hist-next"
+.B hist-prev, hist-next"
Prints the previous or next cammand or search query from history into
inputbox. If there is already text in the input box this will be used to get
history items. A command is not a internal command, but every string entered
gboolean command_history(const Arg* arg)
{
- int step = vb.state.count ? vb.state.count * arg->i : arg->i;
const char* input = GET_TEXT();
- char* entry = history_get(input, step);
+ char* entry = history_get(input, arg->i);
if (!entry) {
return FALSE;