Gedit autocomplete plugin c++

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:

  1. Go to Preferences from window menu, Plugins, check Snippets.
  2. 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.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like