Is there a way to check that I am using a valid variable when coding in VIM? For example, the following basic python code;
myVariable = 0 for x in range(10): myVarialbe += 1
In VSCODE, the variable in the for loop which is misspelled would be underlined with the suggestion on how to edit it to be correctly spelled. Is there any equivalent of being able to see this in VIM?
Tried spellcheck, did not work
Rohan Agarwal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.