How to make classes / functions of class UltraEdit autocomplete of class C ++?

I am currently using UltraEdit, which is equipped with Ctags, to edit files in C ++ (.cpp). His Ctags supports auto-completion of characters during text input, but he cannot correctly restrict himself to just members of a class that is so blind. How to make UltraEdit smarter than Vim + ctags + cppcomplete? While I can not find any plugins on the Internet.

+3
source share
1 answer

UltraEdit does not do a great job of auto-completion compared to an IDE like Eclipse etc., because it does not know how to parse tokens in a specific language, i.e. There is no way to find out that your variable / method names and enumeration are only for autocomplete.

However, UltraEdit has a built-in default autocomplete function (control + space) - UltraEdit will look back 50K in the active file from the cursor location for words that match a partially printed word and show them. Go to "Advanced"> "Configuration"> "Editor"> "AutoFill", and you can check the option "automatically display autofill dialog" after X number of characters.

, ( - UtlraEdit , ). , /, . :

  • > > p > Wrap/Tab Word
  • " "
  • c java > "" > ""
  • " " , .
  • "", .
  • "", "".

, UltraEdit 18 . c, : > / > . c-, IF, DO .. .

, ( 50k , , ) + .

+5

All Articles