You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CodeStats/PluginInfrastructure/Msgs_h.cs
+33Lines changed: 33 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -527,6 +527,39 @@ public enum NppMsg : uint
527
527
/// </summary>
528
528
NPPM_GETPLUGINHOMEPATH=Constants.NPPMSG+97,
529
529
530
+
/// <summary>
531
+
/// INT NPPM_GETSETTINGSCLOUDPATH(size_t strLen, TCHAR *settingsOnCloudPath)
532
+
/// Get settings on cloud path. It's useful if plugins want to store its settings on Cloud, if this path is set.
533
+
/// Returns the number of TCHAR copied/to copy. If the return value is 0, then this path is not set, or the "strLen" is not enough to copy the path.
534
+
/// Users should call it with settingsCloudPath be NULL to get the required number of TCHAR (not including the terminating nul character),
535
+
/// allocate settingsCloudPath buffer with the return value + 1, then call it again to get the path.
536
+
/// </summary>
537
+
NPPM_GETSETTINGSONCLOUDPATH=Constants.NPPMSG+98,
538
+
539
+
/// <summary>
540
+
/// BOOL NPPM_SETLINENUMBERWIDTHMODE(0, INT widthMode)
541
+
/// Set line number margin width in dynamic width mode (LINENUMWIDTH_DYNAMIC) or constant width mode (LINENUMWIDTH_CONSTANT)
542
+
/// It may help some plugins to disable non-dynamic line number margins width to have a smoothly visual effect while vertical scrolling the content in Notepad++
543
+
/// If calling is successful return TRUE, otherwise return FALSE.
544
+
/// </summary>
545
+
NPPM_SETLINENUMBERWIDTHMODE=Constants.NPPMSG+99,
546
+
LINENUMWIDTH_DYNAMIC=0,
547
+
LINENUMWIDTH_CONSTANT=1,
548
+
549
+
/// <summary>
550
+
/// INT NPPM_GETLINENUMBERWIDTHMODE(0, 0)
551
+
/// Get line number margin width in dynamic width mode (LINENUMWIDTH_DYNAMIC) or constant width mode (LINENUMWIDTH_CONSTANT)
0 commit comments