Skip to content

Commit 469672d

Browse files
committed
* update to N++ interfaces for 8.7.5 with scintilla 5.5.3 and lexilla 5.4.1
-- added missing N++ lexer SCLEX_SEARCHRESULT, SCLEX_OBJC, SCLEX_USER to LexicalStyles.iface and corresponding generated files -- align WINVER and _WIN32_WINNT with the version used by N++ -- add new FILE_CLOSEALL_BUT_PINNED, PINTAB N++ menu commands
1 parent 3cc6b8a commit 469672d

File tree

13 files changed

+345
-173
lines changed

13 files changed

+345
-173
lines changed

NppPlugin/include/Common.h

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525
#include <algorithm>
2626
#include <tchar.h>
2727

28-
#pragma deprecated(PathFileExists) // Use doesFileExist, doesDirectoryExist or doesPathExist (for file or directory) instead.
28+
#pragma deprecated(PathFileExists) // Use doesFileExist, doesDirectoryExist or doesPathExist (for file or directory) instead.
29+
#pragma deprecated(PathIsDirectory) // Use doesDirectoryExist instead.
2930

3031

3132
const bool dirUp = true;
@@ -57,9 +58,10 @@ void printInt(int int2print);
5758
void printStr(const wchar_t *str2print);
5859
std::wstring commafyInt(size_t n);
5960

60-
void writeLog(const wchar_t *logFileName, const char *log2write);
61+
void writeLog(const wchar_t* logFileName, const char* log2write);
62+
void writeLog(const wchar_t* logFileName, const wchar_t* log2write);
6163
int filter(unsigned int code, struct _EXCEPTION_POINTERS *ep);
62-
std::wstring purgeMenuItemString(const wchar_t * menuItemStr, bool keepAmpersand = false);
64+
std::wstring purgeMenuItemString(const wchar_t* menuItemStr, bool keepAmpersand = false);
6365
std::vector<std::wstring> tokenizeString(const std::wstring & tokenString, const char delim);
6466

6567
void ClientRectToScreenRect(HWND hWnd, RECT* rect);
@@ -152,7 +154,7 @@ class WcharMbcsConvertor final
152154

153155
#define REBARBAND_SIZE sizeof(REBARBANDINFO)
154156

155-
std::wstring PathRemoveFileSpec(std::wstring & path);
157+
std::wstring pathRemoveFileSpec(std::wstring & path);
156158
std::wstring pathAppend(std::wstring &strDest, const std::wstring & str2append);
157159
COLORREF getCtrlBgColor(HWND hWnd);
158160
std::wstring stringToUpper(std::wstring strToConvert);
@@ -179,9 +181,6 @@ HWND CreateToolTipRect(int toolID, HWND hWnd, HINSTANCE hInst, const PTSTR pszTe
179181
bool isCertificateValidated(const std::wstring & fullFilePath, const std::wstring & subjectName2check);
180182
bool isAssoCommandExisting(LPCTSTR FullPathName);
181183

182-
std::wstring s2ws(const std::string& str);
183-
std::string ws2s(const std::wstring& wstr);
184-
185184
bool deleteFileOrFolder(const std::wstring& f2delete);
186185

187186
void getFilesInFolder(std::vector<std::wstring>& files, const std::wstring& extTypeFilter, const std::wstring& inFolder);
@@ -280,6 +279,12 @@ class Version final
280279
unsigned long _build = 0;
281280
};
282281

283-
bool doesFileExist(const wchar_t* filePath);
284-
bool doesDirectoryExist(const wchar_t* dirPath);
285-
bool doesPathExist(const wchar_t* path);
282+
283+
BOOL getDiskFreeSpaceWithTimeout(const wchar_t* dirPath, ULARGE_INTEGER* freeBytesForUser,
284+
DWORD milliSec2wait = 0, bool* isTimeoutReached = nullptr);
285+
BOOL getFileAttributesExWithTimeout(const wchar_t* filePath, WIN32_FILE_ATTRIBUTE_DATA* fileAttr,
286+
DWORD milliSec2wait = 0, bool* isTimeoutReached = nullptr, DWORD* pdwWin32ApiError = nullptr);
287+
288+
bool doesFileExist(const wchar_t* filePath, DWORD milliSec2wait = 0, bool* isTimeoutReached = nullptr);
289+
bool doesDirectoryExist(const wchar_t* dirPath, DWORD milliSec2wait = 0, bool* isTimeoutReached = nullptr);
290+
bool doesPathExist(const wchar_t* path, DWORD milliSec2wait = 0, bool* isTimeoutReached = nullptr);

NppPlugin/include/SciLexer.h

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,9 @@
149149
#define SCLEX_ASCIIDOC 134
150150
#define SCLEX_GDSCRIPT 135
151151
#define SCLEX_TOML 136
152+
#define SCLEX_TROFF 137
153+
#define SCLEX_DART 138
154+
#define SCLEX_ZIG 139
152155
#define SCLEX_SEARCHRESULT 150
153156
#define SCLEX_OBJC 151
154157
#define SCLEX_USER 152
@@ -292,6 +295,7 @@
292295
#define SCE_HJ_SYMBOLS 50
293296
#define SCE_HJ_STRINGEOL 51
294297
#define SCE_HJ_REGEX 52
298+
#define SCE_HJ_TEMPLATELITERAL 53
295299
#define SCE_HJA_START 55
296300
#define SCE_HJA_DEFAULT 56
297301
#define SCE_HJA_COMMENT 57
@@ -305,6 +309,7 @@
305309
#define SCE_HJA_SYMBOLS 65
306310
#define SCE_HJA_STRINGEOL 66
307311
#define SCE_HJA_REGEX 67
312+
#define SCE_HJA_TEMPLATELITERAL 68
308313
#define SCE_HB_START 70
309314
#define SCE_HB_DEFAULT 71
310315
#define SCE_HB_COMMENTLINE 72
@@ -2077,6 +2082,78 @@
20772082
#define SCE_TOML_TRIPLE_STRING_DQ 12
20782083
#define SCE_TOML_ESCAPECHAR 13
20792084
#define SCE_TOML_DATETIME 14
2085+
#define SCE_TROFF_DEFAULT 0
2086+
#define SCE_TROFF_REQUEST 1
2087+
#define SCE_TROFF_COMMAND 2
2088+
#define SCE_TROFF_NUMBER 3
2089+
#define SCE_TROFF_OPERATOR 4
2090+
#define SCE_TROFF_STRING 5
2091+
#define SCE_TROFF_COMMENT 6
2092+
#define SCE_TROFF_IGNORE 7
2093+
#define SCE_TROFF_ESCAPE_STRING 8
2094+
#define SCE_TROFF_ESCAPE_MACRO 9
2095+
#define SCE_TROFF_ESCAPE_FONT 10
2096+
#define SCE_TROFF_ESCAPE_NUMBER 11
2097+
#define SCE_TROFF_ESCAPE_COLOUR 12
2098+
#define SCE_TROFF_ESCAPE_GLYPH 13
2099+
#define SCE_TROFF_ESCAPE_ENV 14
2100+
#define SCE_TROFF_ESCAPE_SUPPRESSION 15
2101+
#define SCE_TROFF_ESCAPE_SIZE 16
2102+
#define SCE_TROFF_ESCAPE_TRANSPARENT 17
2103+
#define SCE_TROFF_ESCAPE_ISVALID 18
2104+
#define SCE_TROFF_ESCAPE_DRAW 19
2105+
#define SCE_TROFF_ESCAPE_MOVE 20
2106+
#define SCE_TROFF_ESCAPE_HEIGHT 21
2107+
#define SCE_TROFF_ESCAPE_OVERSTRIKE 22
2108+
#define SCE_TROFF_ESCAPE_SLANT 23
2109+
#define SCE_TROFF_ESCAPE_WIDTH 24
2110+
#define SCE_TROFF_ESCAPE_VSPACING 25
2111+
#define SCE_TROFF_ESCAPE_DEVICE 26
2112+
#define SCE_TROFF_ESCAPE_NOMOVE 27
2113+
#define SCE_DART_DEFAULT 0
2114+
#define SCE_DART_COMMENTLINE 1
2115+
#define SCE_DART_COMMENTLINEDOC 2
2116+
#define SCE_DART_COMMENTBLOCK 3
2117+
#define SCE_DART_COMMENTBLOCKDOC 4
2118+
#define SCE_DART_STRING_SQ 5
2119+
#define SCE_DART_STRING_DQ 6
2120+
#define SCE_DART_TRIPLE_STRING_SQ 7
2121+
#define SCE_DART_TRIPLE_STRING_DQ 8
2122+
#define SCE_DART_RAWSTRING_SQ 9
2123+
#define SCE_DART_RAWSTRING_DQ 10
2124+
#define SCE_DART_TRIPLE_RAWSTRING_SQ 11
2125+
#define SCE_DART_TRIPLE_RAWSTRING_DQ 12
2126+
#define SCE_DART_ESCAPECHAR 13
2127+
#define SCE_DART_IDENTIFIER 14
2128+
#define SCE_DART_IDENTIFIER_STRING 15
2129+
#define SCE_DART_OPERATOR 16
2130+
#define SCE_DART_OPERATOR_STRING 17
2131+
#define SCE_DART_SYMBOL_IDENTIFIER 18
2132+
#define SCE_DART_SYMBOL_OPERATOR 19
2133+
#define SCE_DART_NUMBER 20
2134+
#define SCE_DART_KEY 21
2135+
#define SCE_DART_METADATA 22
2136+
#define SCE_DART_KW_PRIMARY 23
2137+
#define SCE_DART_KW_SECONDARY 24
2138+
#define SCE_DART_KW_TERTIARY 25
2139+
#define SCE_DART_KW_TYPE 26
2140+
#define SCE_ZIG_DEFAULT 0
2141+
#define SCE_ZIG_COMMENTLINE 1
2142+
#define SCE_ZIG_COMMENTLINEDOC 2
2143+
#define SCE_ZIG_COMMENTLINETOP 3
2144+
#define SCE_ZIG_NUMBER 4
2145+
#define SCE_ZIG_OPERATOR 5
2146+
#define SCE_ZIG_CHARACTER 6
2147+
#define SCE_ZIG_STRING 7
2148+
#define SCE_ZIG_MULTISTRING 8
2149+
#define SCE_ZIG_ESCAPECHAR 9
2150+
#define SCE_ZIG_IDENTIFIER 10
2151+
#define SCE_ZIG_FUNCTION 11
2152+
#define SCE_ZIG_BUILTIN_FUNCTION 12
2153+
#define SCE_ZIG_KW_PRIMARY 13
2154+
#define SCE_ZIG_KW_SECONDARY 14
2155+
#define SCE_ZIG_KW_TERTIARY 15
2156+
#define SCE_ZIG_KW_TYPE 16
20802157
/* --Autogenerated -- end of section automatically generated from Scintilla.iface */
20812158

20822159

NppPlugin/include/Window.h

Lines changed: 12 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -29,61 +29,52 @@ class Window
2929
//@}
3030

3131

32-
virtual void init(HINSTANCE hInst, HWND parent)
33-
{
32+
virtual void init(HINSTANCE hInst, HWND parent) {
3433
_hInst = hInst;
3534
_hParent = parent;
3635
}
3736

3837
virtual void destroy() = 0;
3938

40-
virtual void display(bool toShow = true) const
41-
{
39+
virtual void display(bool toShow = true) const {
4240
::ShowWindow(_hSelf, toShow ? SW_SHOW : SW_HIDE);
4341
}
4442

4543

46-
virtual void reSizeTo(RECT & rc) // should NEVER be const !!!
47-
{
44+
virtual void reSizeTo(RECT & rc) { // should NEVER be const !!!
4845
::MoveWindow(_hSelf, rc.left, rc.top, rc.right, rc.bottom, TRUE);
4946
redraw();
5047
}
5148

5249

53-
virtual void reSizeToWH(RECT& rc) // should NEVER be const !!!
54-
{
50+
virtual void reSizeToWH(RECT& rc) { // should NEVER be const !!!
5551
::MoveWindow(_hSelf, rc.left, rc.top, rc.right - rc.left, rc.bottom - rc.top, TRUE);
5652
redraw();
5753
}
5854

5955

60-
virtual void redraw(bool forceUpdate = false) const
61-
{
56+
virtual void redraw(bool forceUpdate = false) const {
6257
::InvalidateRect(_hSelf, nullptr, TRUE);
6358
if (forceUpdate)
6459
::UpdateWindow(_hSelf);
6560
}
6661

6762

68-
virtual void getClientRect(RECT & rc) const
69-
{
63+
virtual void getClientRect(RECT & rc) const {
7064
::GetClientRect(_hSelf, &rc);
7165
}
7266

73-
virtual void getWindowRect(RECT & rc) const
74-
{
67+
virtual void getWindowRect(RECT & rc) const {
7568
::GetWindowRect(_hSelf, &rc);
7669
}
7770

78-
virtual int getWidth() const
79-
{
71+
virtual int getWidth() const {
8072
RECT rc;
8173
::GetClientRect(_hSelf, &rc);
8274
return (rc.right - rc.left);
8375
}
8476

85-
virtual int getHeight() const
86-
{
77+
virtual int getHeight() const {
8778
RECT rc;
8879
::GetClientRect(_hSelf, &rc);
8980
if (::IsWindowVisible(_hSelf) == TRUE)
@@ -96,22 +87,19 @@ class Window
9687
return (::IsWindowVisible(_hSelf)?true:false);
9788
}
9889

99-
HWND getHSelf() const
100-
{
90+
HWND getHSelf() const {
10191
return _hSelf;
10292
}
10393

10494
HWND getHParent() const {
10595
return _hParent;
10696
}
10797

108-
void getFocus() const {
98+
void grabFocus() const {
10999
::SetFocus(_hSelf);
110100
}
111101

112-
HINSTANCE getHinst() const
113-
{
114-
//assert(_hInst != 0);
102+
HINSTANCE getHinst() const {
115103
return _hInst;
116104
}
117105

NppPlugin/include/menuCmdID.h

Lines changed: 27 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,11 @@
4747
#define IDM_FILE_OPEN_DEFAULT_VIEWER (IDM_FILE + 23)
4848
#define IDM_FILE_CLOSEALL_UNCHANGED (IDM_FILE + 24)
4949
#define IDM_FILE_CONTAININGFOLDERASWORKSPACE (IDM_FILE + 25)
50+
#define IDM_FILE_CLOSEALL_BUT_PINNED (IDM_FILE + 26)
5051
// IMPORTANT: If list above is modified, you have to change the following values:
5152

5253
// To be updated if new menu item(s) is (are) added in menu "File"
53-
#define IDM_FILEMENU_LASTONE IDM_FILE_CONTAININGFOLDERASWORKSPACE
54+
#define IDM_FILEMENU_LASTONE IDM_FILE_CLOSEALL_BUT_PINNED
5455

5556
// 0 based position of command "Exit" including the bars in the file menu
5657
// and without counting "Recent files history" items
@@ -274,33 +275,33 @@
274275

275276
#define IDM_VIEW (IDM + 4000)
276277
//#define IDM_VIEW_TOOLBAR_HIDE (IDM_VIEW + 1)
277-
#define IDM_VIEW_TOOLBAR_REDUCE (IDM_VIEW + 2)
278-
#define IDM_VIEW_TOOLBAR_ENLARGE (IDM_VIEW + 3)
279-
#define IDM_VIEW_TOOLBAR_STANDARD (IDM_VIEW + 4)
280-
#define IDM_VIEW_REDUCETABBAR (IDM_VIEW + 5)
281-
#define IDM_VIEW_LOCKTABBAR (IDM_VIEW + 6)
282-
#define IDM_VIEW_DRAWTABBAR_TOPBAR (IDM_VIEW + 7)
283-
#define IDM_VIEW_DRAWTABBAR_INACIVETAB (IDM_VIEW + 8)
278+
//#define IDM_VIEW_TOOLBAR_REDUCE (IDM_VIEW + 2)
279+
//#define IDM_VIEW_TOOLBAR_ENLARGE (IDM_VIEW + 3)
280+
//#define IDM_VIEW_TOOLBAR_STANDARD (IDM_VIEW + 4)
281+
//#define IDM_VIEW_REDUCETABBAR (IDM_VIEW + 5)
282+
//#define IDM_VIEW_LOCKTABBAR (IDM_VIEW + 6)
283+
//#define IDM_VIEW_DRAWTABBAR_TOPBAR (IDM_VIEW + 7)
284+
//#define IDM_VIEW_DRAWTABBAR_INACIVETAB (IDM_VIEW + 8)
284285
#define IDM_VIEW_POSTIT (IDM_VIEW + 9)
285286
#define IDM_VIEW_FOLDALL (IDM_VIEW + 10)
286287
#define IDM_VIEW_DISTRACTIONFREE (IDM_VIEW + 11)
287-
#define IDM_VIEW_LINENUMBER (IDM_VIEW + 12)
288-
#define IDM_VIEW_SYMBOLMARGIN (IDM_VIEW + 13)
289-
#define IDM_VIEW_FOLDERMAGIN (IDM_VIEW + 14)
290-
#define IDM_VIEW_FOLDERMAGIN_SIMPLE (IDM_VIEW + 15)
291-
#define IDM_VIEW_FOLDERMAGIN_ARROW (IDM_VIEW + 16)
292-
#define IDM_VIEW_FOLDERMAGIN_CIRCLE (IDM_VIEW + 17)
293-
#define IDM_VIEW_FOLDERMAGIN_BOX (IDM_VIEW + 18)
288+
//#define IDM_VIEW_LINENUMBER (IDM_VIEW + 12)
289+
//#define IDM_VIEW_SYMBOLMARGIN (IDM_VIEW + 13)
290+
//#define IDM_VIEW_FOLDERMAGIN (IDM_VIEW + 14)
291+
//#define IDM_VIEW_FOLDERMAGIN_SIMPLE (IDM_VIEW + 15)
292+
//#define IDM_VIEW_FOLDERMAGIN_ARROW (IDM_VIEW + 16)
293+
//#define IDM_VIEW_FOLDERMAGIN_CIRCLE (IDM_VIEW + 17)
294+
//#define IDM_VIEW_FOLDERMAGIN_BOX (IDM_VIEW + 18)
294295
#define IDM_VIEW_ALL_CHARACTERS (IDM_VIEW + 19)
295296
#define IDM_VIEW_INDENT_GUIDE (IDM_VIEW + 20)
296-
#define IDM_VIEW_CURLINE_HILITING (IDM_VIEW + 21)
297+
//#define IDM_VIEW_CURLINE_HILITING (IDM_VIEW + 21)
297298
#define IDM_VIEW_WRAP (IDM_VIEW + 22)
298299
#define IDM_VIEW_ZOOMIN (IDM_VIEW + 23)
299300
#define IDM_VIEW_ZOOMOUT (IDM_VIEW + 24)
300301
#define IDM_VIEW_TAB_SPACE (IDM_VIEW + 25)
301302
#define IDM_VIEW_EOL (IDM_VIEW + 26)
302-
#define IDM_VIEW_TOOLBAR_REDUCE_SET2 (IDM_VIEW + 27)
303-
#define IDM_VIEW_TOOLBAR_ENLARGE_SET2 (IDM_VIEW + 28)
303+
//#define IDM_VIEW_TOOLBAR_REDUCE_SET2 (IDM_VIEW + 27)
304+
//#define IDM_VIEW_TOOLBAR_ENLARGE_SET2 (IDM_VIEW + 28)
304305
#define IDM_VIEW_UNFOLDALL (IDM_VIEW + 29)
305306
#define IDM_VIEW_FOLD_CURRENT (IDM_VIEW + 30)
306307
#define IDM_VIEW_UNFOLD_CURRENT (IDM_VIEW + 31)
@@ -310,17 +311,17 @@
310311
#define IDM_VIEW_SYNSCROLLV (IDM_VIEW + 35)
311312
#define IDM_VIEW_SYNSCROLLH (IDM_VIEW + 36)
312313
//#define IDM_VIEW_EDGENONE (IDM_VIEW + 37)
313-
#define IDM_VIEW_DRAWTABBAR_CLOSEBOTTUN (IDM_VIEW + 38)
314-
#define IDM_VIEW_DRAWTABBAR_DBCLK2CLOSE (IDM_VIEW + 39)
315-
#define IDM_VIEW_REFRESHTABAR (IDM_VIEW + 40)
314+
//#define IDM_VIEW_DRAWTABBAR_CLOSEBOTTUN (IDM_VIEW + 38)
315+
//#define IDM_VIEW_DRAWTABBAR_DBCLK2CLOSE (IDM_VIEW + 39)
316+
//#define IDM_VIEW_REFRESHTABAR (IDM_VIEW + 40)
316317
#define IDM_VIEW_WRAP_SYMBOL (IDM_VIEW + 41)
317318
#define IDM_VIEW_HIDELINES (IDM_VIEW + 42)
318-
#define IDM_VIEW_DRAWTABBAR_VERTICAL (IDM_VIEW + 43)
319-
#define IDM_VIEW_DRAWTABBAR_MULTILINE (IDM_VIEW + 44)
319+
//#define IDM_VIEW_DRAWTABBAR_VERTICAL (IDM_VIEW + 43)
320+
//#define IDM_VIEW_DRAWTABBAR_MULTILINE (IDM_VIEW + 44)
320321
//#define IDM_VIEW_DOCCHANGEMARGIN (IDM_VIEW + 45)
321-
#define IDM_VIEW_LWDEF (IDM_VIEW + 46)
322-
#define IDM_VIEW_LWALIGN (IDM_VIEW + 47)
323-
#define IDM_VIEW_LWINDENT (IDM_VIEW + 48)
322+
//#define IDM_VIEW_LWDEF (IDM_VIEW + 46)
323+
//#define IDM_VIEW_LWALIGN (IDM_VIEW + 47)
324+
#define IDM_PINTAB (IDM_VIEW + 48)
324325
#define IDM_VIEW_SUMMARY (IDM_VIEW + 49)
325326

326327
#define IDM_VIEW_FOLD (IDM_VIEW + 50)

NppPlugin/src/dpiManagerV2.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ LOGFONT DPIManagerV2::getDefaultGUIFontForDpi(UINT dpi, FontType type)
211211

212212
void DPIManagerV2::loadIcon(HINSTANCE hinst, const wchar_t* pszName, int cx, int cy, HICON* phico, UINT fuLoad)
213213
{
214-
//if (::LoadIconWithScaleDown(hinst, pszName, cx, cy, phico) != S_OK)
214+
if (::LoadIconWithScaleDown(hinst, pszName, cx, cy, phico) != S_OK)
215215
{
216216
*phico = static_cast<HICON>(::LoadImage(hinst, pszName, IMAGE_ICON, cx, cy, fuLoad));
217217
}

NppPlugin/stdafx.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
// Modify the following defines if you have to target a platform prior to the ones specified below.
44
// Refer to MSDN for the latest info on corresponding values for different platforms.
55
#ifndef WINVER // Allow use of features specific to Windows XP or later.
6-
#define WINVER 0x0501 // Change this to the appropriate value to target other versions of Windows.
6+
#define WINVER 0x0A00 // Change this to the appropriate value to target other versions of Windows.
77
#endif
88

99
#ifndef _WIN32_WINNT // Allow use of features specific to Windows XP or later.
10-
#define _WIN32_WINNT 0x0501 // Change this to the appropriate value to target other versions of Windows.
10+
#define _WIN32_WINNT 0x0A00 // Change this to the appropriate value to target other versions of Windows.
1111
#endif
1212

1313
#ifndef _WIN32_WINDOWS // Allow use of features specific to Windows 98 or later.
@@ -22,6 +22,8 @@
2222
// Windows Header Files:
2323
#include <windows.h>
2424
#include <shlwapi.h>
25+
#include <WinUser.h>
26+
#include <commctrl.h>
2527

2628
#include <string>
2729
typedef std::basic_string<TCHAR> tstring;

PythonScript/src/Enums.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1059,6 +1059,12 @@ enum Lexer
10591059
PYSCR_SCLEX_ASCIIDOC = SCLEX_ASCIIDOC,
10601060
PYSCR_SCLEX_GDSCRIPT = SCLEX_GDSCRIPT,
10611061
PYSCR_SCLEX_TOML = SCLEX_TOML,
1062+
PYSCR_SCLEX_TROFF = SCLEX_TROFF,
1063+
PYSCR_SCLEX_DART = SCLEX_DART,
1064+
PYSCR_SCLEX_ZIG = SCLEX_ZIG,
1065+
PYSCR_SCLEX_SEARCHRESULT = SCLEX_SEARCHRESULT,
1066+
PYSCR_SCLEX_OBJC = SCLEX_OBJC,
1067+
PYSCR_SCLEX_USER = SCLEX_USER,
10621068
PYSCR_SCLEX_AUTOMATIC = SCLEX_AUTOMATIC
10631069
};
10641070

0 commit comments

Comments
 (0)