Hi everyone, I'm trying to find the command that would find the next error in a file. For instance the following code contains a typo, how can one find it ?
-------------------------------------------------
#include <stdio.h>
int main(int argc, char **argv)
{
printf("Hello world!\n");
] // <- Here it is :-), vim detects it and makes it red
return 0;
}
-------------------------------------------------
Thx in advance,
Lionel
