Notepad++ minimal (7.9.5 64bit) just can't remember plugins' settings
-
debug info:
Notepad++ v7.9.5 (64-bit)
Build time : Mar 21 2021 - 02:13:17
Path : C:\Softwares\NotePadPP\notepad++.exe
Admin mode : ON
Local Conf mode : ON
OS Name : Windows 10 Enterprise LTSC 2019 (64-bit)
OS Version : 1809
OS Build : 17763.1490
Current ANSI codepage : 936
Plugins : AnalysePlugin.dll XBrackets.dllplugins’ settings will be cleared when notepad++ restarting
-
@Demolemon11 said in Notepad++ minimal (7.9.5 64bit) just can't remember plugins' settings:
plugins’ settings will be cleared when notepad++ restarting
Plugins are responsible for tracking their own settings, not Notepad++.
Usually plugins keep track of their settings using config files in one of the following:
%AppData%\Notepad++\plugins\config
(if the Notepad++ executable is in ProgramFiles)- for portable installations,
nppDir\plugins\Config
, where nppDir is the root directory of the portable installation (I think this is what you have)
I suspect that the plugins couldn’t find the directory where they would normally save the config files, or else that they saved the config files in the wrong location. Maybe one of those plugin authors forgot to consider portable installations when they were deciding how to save their settings.
-
@Mark-Olson Thanks so much!
-
@Mark-Olson I just create a dir called config under the plugins folder, and then it remembers the settings, thank you again