Is there a gedit plugin that autocompletes based on c++ frequent words? Or that autocompletes based on a list.
1 Answer
Gedit has Snippets plugin:
- Go to Preferences from window menu, Plugins, check Snippets.
- Select Manage Snippets from window menu and set-up C++.
Test with new test.cpp file, enter main and click Tab, it will expand to standard main function:
int main (int argc, char const* argv[])
{ return 0;
}If it is not enough - you may want to try Geany.