Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I stop Notepad++ from showing autocomplete for all words in the file

People also ask

Does Notepad have autocomplete?

What is Auto-completion. Notepad++ offers automatic completion of various sorts of text after you have entered an initial substring (or prefix), which can save you having to type all of a long word (and potentially save you mistyping it).

Does Notepad ++ have intellisense?

Now the good news! If you are rather a fan of writing your code in a more lightweight editor like Notepad++, you don't have to completely give up the autocomplete support. Even Notepad++ comes with a auto-completion feature.


Notepad++ provides 2 types of features:

  • Auto-completion that read the open file and provide suggestion of words and/or functions within the file
  • Suggestion with the arguments of functions (specific to the language)

Based on what you write, it seems what you want is auto-completion on function only + suggestion on arguments.

To do that, you just need to change a setting.

  1. Go to Settings > Preferences... > Auto-completion
  2. Check Enable Auto-completion on each input
  3. Select Function completion and not Word completion
  4. Check Function parameter hint on input (if you have this option)

On version 6.5.5 of Notepad++, I have this setting settings

Some documentation about auto-completion is available in Notepad++ Wiki.


The answer is to DISABLE "Enable auto-completion on each input". Tested and works perfectly.