Sublime Forum

Turning off commented words to autocompletion's word buffer?

#1

Is there a way to keep commented words from showing up in autocomplete?

For instance if I have

#include <iostream>

using namespace std;

int main(int argc, char **argv){
	
	//this is comment
	cout << "Hello World" << endl;

	return 0;
}

If I were to start typing com it would autocomplete to comment.

So is there a way to keep commented words out of autocomplete?

0 Likes