2626
2727enum LangType {L_TEXT , L_PHP , L_C , L_CPP , L_CS , L_OBJC , L_JAVA , L_RC ,\
2828 L_HTML , L_XML , L_MAKEFILE , L_PASCAL , L_BATCH , L_INI , L_ASCII , L_USER ,\
29+ // Don't use L_JS_EMBEDDED, use L_JAVASCRIPT instead
2930 L_ASP , L_SQL , L_VB , L_JS_EMBEDDED , L_CSS , L_PERL , L_PYTHON , L_LUA , \
3031 L_TEX , L_FORTRAN , L_BASH , L_FLASH , L_NSIS , L_TCL , L_LISP , L_SCHEME ,\
3132 L_ASM , L_DIFF , L_PROPS , L_PS , L_RUBY , L_SMALLTALK , L_VHDL , L_KIX , L_AU3 ,\
@@ -38,8 +39,7 @@ enum LangType {L_TEXT, L_PHP , L_C, L_CPP, L_CS, L_OBJC, L_JAVA, L_RC,\
3839 L_MMIXAL , L_NIM , L_NNCRONTAB , L_OSCRIPT , L_REBOL , \
3940 L_REGISTRY , L_RUST , L_SPICE , L_TXT2TAGS , L_VISUALPROLOG ,\
4041 L_TYPESCRIPT , L_JSON5 , L_MSSQL , L_GDSCRIPT , L_HOLLYWOOD ,\
41- L_GOLANG , L_RAKU , L_TOML , L_SAS , L_ERRORLIST , \
42- // Don't use L_JS_EMBEDDED, use L_JAVASCRIPT instead
42+ L_GOLANG , L_RAKU , L_TOML , L_SAS , L_ERRORLIST , L_ESCSEQ ,\
4343 // The end of enumerated language type, so it should be always at the end
4444 L_EXTERNAL };
4545enum class ExternalLexerAutoIndentMode { Standard, C_Like, Custom };
@@ -261,10 +261,10 @@ enum Platform { PF_UNKNOWN, PF_X86, PF_X64, PF_IA64, PF_ARM64 };
261261 // Return TRUE
262262
263263 #define NPPM_DMMREGASDCKDLG (NPPMSG + 33 )
264- // BOOL NPPM_DMMREGASDCKDLG(0, tTbData * pData)
264+ // BOOL NPPM_DMMREGASDCKDLG(0, DockedWidgetData * pData)
265265 // Pass the necessary dockingData to Notepad++ in order to make your dialog dockable.
266266 // wParam: 0 (not used)
267- // lParam[in]: pData is the pointer of tTbData. Please check tTbData structure in "Docking.h"
267+ // lParam[in]: pData is the pointer of DockedWidgetData (old name " tTbData") . Please check DockedWidgetData structure in "Docking.h"
268268 // Minimum information which needs to be filled out are hClient, pszName, dlgID, uMask and pszModuleName.
269269 // Notice that rcFloat and iPrevCont shouldn't be filled. They are used internally.
270270 // Return TRUE
@@ -280,7 +280,7 @@ enum Platform { PF_UNKNOWN, PF_X86, PF_X64, PF_IA64, PF_ARM64 };
280280 // BOOL WM_DMM_VIEWOTHERTAB(0, wchar_t* name)
281281 // Show the plugin dialog (switch to plugin tab) with the given name.
282282 // wParam: 0 (not used)
283- // lParam[in]: name should be the same value as previously used to register the dialog (pszName of tTbData )
283+ // lParam[in]: name should be the same value as previously used to register the dialog (pszName of DockedWidgetData )
284284 // Return TRUE
285285
286286 #define NPPM_RELOADFILE (NPPMSG + 36 )
0 commit comments