Not working Autocomplete when activated "Function parameters hint on input"
-
When “Function parameters hint on input” checkbox activated and function hint is popup not work autocomplete inside function bracket. For example:
$abc = 123;
$abcde = 456;
var_dump($abchere not apper autocomplete list
-
-
Sorry for late answer.
In my case language is PHP screen1, screen2Debug info:
Notepad++ v6.9
Build time : Feb 21 2016 - 21:27:55
Path : C:\Program Files\Notepad++\notepad++.exe
Admin mode : OFF
Local Conf mode : ON
OS : Windows XP
Plugins : ComparePlugin.dll JSMinNPP.dll mimeTools.dll NppConverter.dll NppExport.dll NppFTP.dll PluginManager.dll -
From the scintilla docs,
there is some interaction between call tips and autocompletion lists in that showing a call tip cancels any active autocompletion list, and vice versa.
Cheers
Claudia -
Thank you!