Skip to content

Commit 42240f4

Browse files
committed
- update to n++ 8.8.2
- don't use precompiled header
1 parent 35ce8c0 commit 42240f4

21 files changed

+135
-26
lines changed

NppPlugin/include/Common.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,7 @@ std::wstring getDateTimeStrFrom(const std::wstring& dateTimeFormat, const SYSTEM
220220

221221
HFONT createFont(const wchar_t* fontName, int fontSize, bool isBold, HWND hDestParent);
222222
bool removeReadOnlyFlagFromFileAttributes(const wchar_t* fileFullPath);
223+
bool toggleReadOnlyFlagFromFileAttributes(const wchar_t* fileFullPath, bool& isChangedToReadOnly);
223224

224225
bool isWin32NamespacePrefixedFileName(const std::wstring& fileName);
225226
bool isWin32NamespacePrefixedFileName(const wchar_t* szFileName);

NppPlugin/include/Notepad_plus_msgs.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1248,3 +1248,10 @@ enum Platform { PF_UNKNOWN, PF_X86, PF_X64, PF_IA64, PF_ARM64 };
12481248
//scnNotification->nmhdr.code = NPPN_NATIVELANGCHANGED;
12491249
//scnNotification->nmhdr.hwndFrom = hwndNpp
12501250
//scnNotification->nmhdr.idFrom = 0; // preserved for the future use, must be zero
1251+
1252+
#define NPPN_TOOLBARICONSETCHANGED (NPPN_FIRST + 32) // To notify plugins that toolbar icon set selection has changed
1253+
//scnNotification->nmhdr.code = NPPN_TOOLBARICONSETCHANGED;
1254+
//scnNotification->nmhdr.hwndFrom = hwndNpp;
1255+
//scnNotification->nmhdr.idFrom = iconSetChoice;
1256+
// where iconSetChoice could be 1 of 5 possible values:
1257+
// 0 (Fluent UI: small), 1 (Fluent UI: large), 2 (Filled Fluent UI: small), 3 (Filled Fluent UI: large) and 4 (Standard icons: small).

NppPlugin/include/SciLexer.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2098,6 +2098,7 @@
20982098
#define SCE_TOML_TRIPLE_STRING_DQ 12
20992099
#define SCE_TOML_ESCAPECHAR 13
21002100
#define SCE_TOML_DATETIME 14
2101+
#define SCE_TOML_STRINGEOL 15
21012102
#define SCE_TROFF_DEFAULT 0
21022103
#define SCE_TROFF_REQUEST 1
21032104
#define SCE_TROFF_COMMAND 2
@@ -2153,6 +2154,7 @@
21532154
#define SCE_DART_KW_SECONDARY 24
21542155
#define SCE_DART_KW_TERTIARY 25
21552156
#define SCE_DART_KW_TYPE 26
2157+
#define SCE_DART_STRINGEOL 27
21562158
#define SCE_ZIG_DEFAULT 0
21572159
#define SCE_ZIG_COMMENTLINE 1
21582160
#define SCE_ZIG_COMMENTLINEDOC 2
@@ -2171,6 +2173,7 @@
21712173
#define SCE_ZIG_KW_TERTIARY 15
21722174
#define SCE_ZIG_KW_TYPE 16
21732175
#define SCE_ZIG_IDENTIFIER_STRING 17
2176+
#define SCE_ZIG_STRINGEOL 18
21742177
#define SCE_NIX_DEFAULT 0
21752178
#define SCE_NIX_COMMENTLINE 1
21762179
#define SCE_NIX_COMMENTBLOCK 2
@@ -2187,6 +2190,7 @@
21872190
#define SCE_NIX_KEYWORD2 13
21882191
#define SCE_NIX_KEYWORD3 14
21892192
#define SCE_NIX_KEYWORD4 15
2193+
#define SCE_NIX_STRINGEOL 16
21902194
/* --Autogenerated -- end of section automatically generated from Scintilla.iface */
21912195

21922196

NppPlugin/include/Scintilla.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -478,6 +478,8 @@ typedef sptr_t (*SciFnDirectStatus)(sptr_t ptr, unsigned int iMessage, uptr_t wP
478478
#define SCI_AUTOCGETMAXHEIGHT 2211
479479
#define SCI_AUTOCSETSTYLE 2109
480480
#define SCI_AUTOCGETSTYLE 2120
481+
#define SCI_AUTOCSETIMAGESCALE 2815
482+
#define SCI_AUTOCGETIMAGESCALE 2816
481483
#define SCI_SETINDENT 2122
482484
#define SCI_GETINDENT 2123
483485
#define SCI_SETUSETABS 2124
@@ -541,6 +543,7 @@ typedef sptr_t (*SciFnDirectStatus)(sptr_t ptr, unsigned int iMessage, uptr_t wP
541543
#define SCI_GETCHANGEHISTORY 2781
542544
#define SC_UNDO_SELECTION_HISTORY_DISABLED 0
543545
#define SC_UNDO_SELECTION_HISTORY_ENABLED 1
546+
#define SC_UNDO_SELECTION_HISTORY_SCROLL 2
544547
#define SCI_SETUNDOSELECTIONHISTORY 2782
545548
#define SCI_GETUNDOSELECTIONHISTORY 2783
546549
#define SCI_SETSELECTIONSERIALIZED 2784
@@ -567,6 +570,7 @@ typedef sptr_t (*SciFnDirectStatus)(sptr_t ptr, unsigned int iMessage, uptr_t wP
567570
#define SCI_LINEFROMPOSITION 2166
568571
#define SCI_POSITIONFROMLINE 2167
569572
#define SCI_LINESCROLL 2168
573+
#define SCI_SCROLLVERTICAL 2817
570574
#define SCI_SCROLLCARET 2169
571575
#define SCI_SCROLLRANGE 2569
572576
#define SCI_REPLACESEL 2170

NppPlugin/include/menuCmdID.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,12 +110,12 @@
110110
#define IDM_MACRO_SAVECURRENTMACRO (IDM_EDIT + 25)
111111
#define IDM_EDIT_RTL (IDM_EDIT + 26)
112112
#define IDM_EDIT_LTR (IDM_EDIT + 27)
113-
#define IDM_EDIT_SETREADONLY (IDM_EDIT + 28)
113+
#define IDM_EDIT_TOGGLEREADONLY (IDM_EDIT + 28)
114114
#define IDM_EDIT_FULLPATHTOCLIP (IDM_EDIT + 29)
115115
#define IDM_EDIT_FILENAMETOCLIP (IDM_EDIT + 30)
116116
#define IDM_EDIT_CURRENTDIRTOCLIP (IDM_EDIT + 31)
117117
#define IDM_MACRO_RUNMULTIMACRODLG (IDM_EDIT + 32)
118-
#define IDM_EDIT_CLEARREADONLY (IDM_EDIT + 33)
118+
#define IDM_EDIT_TOGGLESYSTEMREADONLY (IDM_EDIT + 33)
119119
#define IDM_EDIT_COLUMNMODE (IDM_EDIT + 34)
120120
#define IDM_EDIT_BLOCK_COMMENT_SET (IDM_EDIT + 35)
121121
#define IDM_EDIT_BLOCK_UNCOMMENT (IDM_EDIT + 36)

PythonScript.Tests/PythonScript.Tests.vcxproj

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
</PropertyGroup>
132132
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
133133
<ClCompile>
134-
<PrecompiledHeader>Use</PrecompiledHeader>
134+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
135135
<WarningLevel>Level3</WarningLevel>
136136
<Optimization>Disabled</Optimization>
137137
<PreprocessorDefinitions>WIN32;NOMINMAX;_DEBUG;_CONSOLE;BOOST_PYTHON_STATIC_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
@@ -157,7 +157,7 @@
157157
</ItemDefinitionGroup>
158158
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
159159
<ClCompile>
160-
<PrecompiledHeader>Use</PrecompiledHeader>
160+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
161161
<WarningLevel>Level3</WarningLevel>
162162
<Optimization>Disabled</Optimization>
163163
<PreprocessorDefinitions>WIN32;NOMINMAX;_DEBUG;_CONSOLE;BOOST_PYTHON_STATIC_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
@@ -183,7 +183,7 @@
183183
</ItemDefinitionGroup>
184184
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PythonDebug|Win32'">
185185
<ClCompile>
186-
<PrecompiledHeader>Use</PrecompiledHeader>
186+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
187187
<WarningLevel>Level3</WarningLevel>
188188
<Optimization>Disabled</Optimization>
189189
<PreprocessorDefinitions>WIN32;NOMINMAX;BOOST_DEBUG_PYTHON;BOOST_LINKING_PYTHON;_DEBUG;_CONSOLE;BOOST_PYTHON_STATIC_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
@@ -209,7 +209,7 @@
209209
</ItemDefinitionGroup>
210210
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PythonDebug|x64'">
211211
<ClCompile>
212-
<PrecompiledHeader>Use</PrecompiledHeader>
212+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
213213
<WarningLevel>Level3</WarningLevel>
214214
<Optimization>Disabled</Optimization>
215215
<PreprocessorDefinitions>WIN32;NOMINMAX;BOOST_DEBUG_PYTHON;BOOST_LINKING_PYTHON;_DEBUG;_CONSOLE;BOOST_PYTHON_STATIC_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
@@ -236,7 +236,7 @@
236236
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
237237
<ClCompile>
238238
<WarningLevel>Level3</WarningLevel>
239-
<PrecompiledHeader>Use</PrecompiledHeader>
239+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
240240
<Optimization>MaxSpeed</Optimization>
241241
<FunctionLevelLinking>true</FunctionLevelLinking>
242242
<IntrinsicFunctions>true</IntrinsicFunctions>
@@ -258,7 +258,7 @@
258258
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
259259
<ClCompile>
260260
<WarningLevel>Level3</WarningLevel>
261-
<PrecompiledHeader>Use</PrecompiledHeader>
261+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
262262
<Optimization>MaxSpeed</Optimization>
263263
<FunctionLevelLinking>true</FunctionLevelLinking>
264264
<IntrinsicFunctions>true</IntrinsicFunctions>
@@ -322,4 +322,4 @@
322322
<Error Condition="!Exists('..\packages\boost.1.87.0\build\boost.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\boost.1.87.0\build\boost.targets'))" />
323323
<Error Condition="!Exists('..\packages\boost_python312-vc143.1.87.0\build\boost_python312-vc143.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\boost_python312-vc143.1.87.0\build\boost_python312-vc143.targets'))" />
324324
</Target>
325-
</Project>
325+
</Project>

PythonScript.Tests/PythonScript.Tests.vcxproj.filters

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,5 +78,8 @@
7878
<ClCompile Include="..\PythonScript\src\NppAllocator.cpp">
7979
<Filter>Source Files\linkedCode</Filter>
8080
</ClCompile>
81+
<ClCompile Include="..\PythonScript\src\Utility.cpp">
82+
<Filter>Source Files</Filter>
83+
</ClCompile>
8184
</ItemGroup>
8285
</Project>

PythonScript/project/PythonScript.vcxproj

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@
177177
</PropertyGroup>
178178
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
179179
<ClCompile>
180-
<PrecompiledHeader>Use</PrecompiledHeader>
180+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
181181
<WarningLevel>Level4</WarningLevel>
182182
<Optimization>Disabled</Optimization>
183183
<PreprocessorDefinitions>NOMINMAX;WIN32;_DEBUG;_WINDOWS;_USRDLL;PYTHONSCRIPT_EXPORTS;BOOST_PYTHON_STATIC_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
@@ -202,7 +202,7 @@ xcopy $(ProjectDir)..\python_tests\*.* "e:\notepadtest\unicode\plugins\config\py
202202
</ItemDefinitionGroup>
203203
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
204204
<ClCompile>
205-
<PrecompiledHeader>Use</PrecompiledHeader>
205+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
206206
<WarningLevel>Level4</WarningLevel>
207207
<Optimization>Disabled</Optimization>
208208
<PreprocessorDefinitions>NOMINMAX;WIN32;_DEBUG;_WINDOWS;_USRDLL;PYTHONSCRIPT_EXPORTS;BOOST_PYTHON_STATIC_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
@@ -227,7 +227,7 @@ xcopy $(ProjectDir)..\python_tests\*.* "e:\notepadtest\unicode\plugins\config\py
227227
</ItemDefinitionGroup>
228228
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PythonDebug|Win32'">
229229
<ClCompile>
230-
<PrecompiledHeader>Use</PrecompiledHeader>
230+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
231231
<WarningLevel>Level4</WarningLevel>
232232
<Optimization>Disabled</Optimization>
233233
<PreprocessorDefinitions>NOMINMAX;WIN32;BOOST_DEBUG_PYTHON;BOOST_LINKING_PYTHON;_DEBUG;_WINDOWS;_USRDLL;PYTHONSCRIPT_EXPORTS;BOOST_PYTHON_STATIC_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
@@ -253,7 +253,7 @@ xcopy $(ProjectDir)..\python_tests\*.* "e:\notepadtest\unicode\plugins\config\py
253253
</ItemDefinitionGroup>
254254
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='PythonDebug|x64'">
255255
<ClCompile>
256-
<PrecompiledHeader>Use</PrecompiledHeader>
256+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
257257
<WarningLevel>Level4</WarningLevel>
258258
<Optimization>Disabled</Optimization>
259259
<PreprocessorDefinitions>NOMINMAX;WIN32;BOOST_DEBUG_PYTHON;BOOST_LINKING_PYTHON;_DEBUG;_WINDOWS;_USRDLL;PYTHONSCRIPT_EXPORTS;BOOST_PYTHON_STATIC_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
@@ -279,7 +279,7 @@ xcopy $(ProjectDir)..\python_tests\*.* "e:\notepadtest\unicode\plugins\config\py
279279
</ItemDefinitionGroup>
280280
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DebugStartup|Win32'">
281281
<ClCompile>
282-
<PrecompiledHeader>Use</PrecompiledHeader>
282+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
283283
<WarningLevel>Level4</WarningLevel>
284284
<Optimization>Disabled</Optimization>
285285
<PreprocessorDefinitions>NOMINMAX;DEBUG_STARTUP;WIN32;_DEBUG;_WINDOWS;_USRDLL;PYTHONSCRIPT_EXPORTS;BOOST_PYTHON_STATIC_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
@@ -302,7 +302,7 @@ xcopy $(ProjectDir)..\python_tests\*.* "e:\notepadtest\unicode\plugins\config\py
302302
</ItemDefinitionGroup>
303303
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DebugStartup|x64'">
304304
<ClCompile>
305-
<PrecompiledHeader>Use</PrecompiledHeader>
305+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
306306
<WarningLevel>Level4</WarningLevel>
307307
<Optimization>Disabled</Optimization>
308308
<PreprocessorDefinitions>NOMINMAX;DEBUG_STARTUP;WIN32;_DEBUG;_WINDOWS;_USRDLL;PYTHONSCRIPT_EXPORTS;BOOST_PYTHON_STATIC_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
@@ -326,7 +326,7 @@ xcopy $(ProjectDir)..\python_tests\*.* "e:\notepadtest\unicode\plugins\config\py
326326
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
327327
<ClCompile>
328328
<WarningLevel>Level4</WarningLevel>
329-
<PrecompiledHeader>Use</PrecompiledHeader>
329+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
330330
<Optimization>MaxSpeed</Optimization>
331331
<FunctionLevelLinking>true</FunctionLevelLinking>
332332
<IntrinsicFunctions>true</IntrinsicFunctions>
@@ -349,7 +349,7 @@ xcopy $(ProjectDir)..\python_tests\*.* "e:\notepadtest\unicode\plugins\config\py
349349
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
350350
<ClCompile>
351351
<WarningLevel>Level4</WarningLevel>
352-
<PrecompiledHeader>Use</PrecompiledHeader>
352+
<PrecompiledHeader>NotUsing</PrecompiledHeader>
353353
<Optimization>MaxSpeed</Optimization>
354354
<FunctionLevelLinking>true</FunctionLevelLinking>
355355
<IntrinsicFunctions>true</IntrinsicFunctions>
@@ -555,4 +555,4 @@ xcopy $(ProjectDir)..\python_tests\*.* "e:\notepadtest\unicode\plugins\config\py
555555
<Error Condition="!Exists('..\..\packages\boost.1.87.0\build\boost.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\boost.1.87.0\build\boost.targets'))" />
556556
<Error Condition="!Exists('..\..\packages\boost_python312-vc143.1.87.0\build\boost_python312-vc143.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\boost_python312-vc143.1.87.0\build\boost_python312-vc143.targets'))" />
557557
</Target>
558-
</Project>
558+
</Project>

PythonScript/src/Enums.h

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,8 @@ enum ChangeHistoryOption
524524
enum UndoSelectionHistoryOption
525525
{
526526
PYSCR_SC_UNDO_SELECTION_HISTORY_DISABLED = SC_UNDO_SELECTION_HISTORY_DISABLED,
527-
PYSCR_SC_UNDO_SELECTION_HISTORY_ENABLED = SC_UNDO_SELECTION_HISTORY_ENABLED
527+
PYSCR_SC_UNDO_SELECTION_HISTORY_ENABLED = SC_UNDO_SELECTION_HISTORY_ENABLED,
528+
PYSCR_SC_UNDO_SELECTION_HISTORY_SCROLL = SC_UNDO_SELECTION_HISTORY_SCROLL
528529
};
529530

530531
enum FoldLevel
@@ -1317,6 +1318,8 @@ enum ScintillaMessage
13171318
PYSCR_SCI_AUTOCGETMAXHEIGHT = SCI_AUTOCGETMAXHEIGHT,
13181319
PYSCR_SCI_AUTOCSETSTYLE = SCI_AUTOCSETSTYLE,
13191320
PYSCR_SCI_AUTOCGETSTYLE = SCI_AUTOCGETSTYLE,
1321+
PYSCR_SCI_AUTOCSETIMAGESCALE = SCI_AUTOCSETIMAGESCALE,
1322+
PYSCR_SCI_AUTOCGETIMAGESCALE = SCI_AUTOCGETIMAGESCALE,
13201323
PYSCR_SCI_SETINDENT = SCI_SETINDENT,
13211324
PYSCR_SCI_GETINDENT = SCI_GETINDENT,
13221325
PYSCR_SCI_SETUSETABS = SCI_SETUSETABS,
@@ -1374,6 +1377,7 @@ enum ScintillaMessage
13741377
PYSCR_SCI_LINEFROMPOSITION = SCI_LINEFROMPOSITION,
13751378
PYSCR_SCI_POSITIONFROMLINE = SCI_POSITIONFROMLINE,
13761379
PYSCR_SCI_LINESCROLL = SCI_LINESCROLL,
1380+
PYSCR_SCI_SCROLLVERTICAL = SCI_SCROLLVERTICAL,
13771381
PYSCR_SCI_SCROLLCARET = SCI_SCROLLCARET,
13781382
PYSCR_SCI_SCROLLRANGE = SCI_SCROLLRANGE,
13791383
PYSCR_SCI_REPLACESEL = SCI_REPLACESEL,

PythonScript/src/EnumsWrapper.cpp

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,8 @@ void export_enums()
469469

470470
boost::python::enum_<UndoSelectionHistoryOption>("UNDOSELECTIONHISTORYOPTION")
471471
.value("DISABLED", PYSCR_SC_UNDO_SELECTION_HISTORY_DISABLED)
472-
.value("ENABLED", PYSCR_SC_UNDO_SELECTION_HISTORY_ENABLED);
472+
.value("ENABLED", PYSCR_SC_UNDO_SELECTION_HISTORY_ENABLED)
473+
.value("SCROLL", PYSCR_SC_UNDO_SELECTION_HISTORY_SCROLL);
473474

474475
boost::python::enum_<FoldLevel>("FOLDLEVEL")
475476
.value("NONE", PYSCR_SC_FOLDLEVELNONE)
@@ -1193,6 +1194,8 @@ void export_enums()
11931194
.value("SCI_AUTOCGETMAXHEIGHT", PYSCR_SCI_AUTOCGETMAXHEIGHT)
11941195
.value("SCI_AUTOCSETSTYLE", PYSCR_SCI_AUTOCSETSTYLE)
11951196
.value("SCI_AUTOCGETSTYLE", PYSCR_SCI_AUTOCGETSTYLE)
1197+
.value("SCI_AUTOCSETIMAGESCALE", PYSCR_SCI_AUTOCSETIMAGESCALE)
1198+
.value("SCI_AUTOCGETIMAGESCALE", PYSCR_SCI_AUTOCGETIMAGESCALE)
11961199
.value("SCI_SETINDENT", PYSCR_SCI_SETINDENT)
11971200
.value("SCI_GETINDENT", PYSCR_SCI_GETINDENT)
11981201
.value("SCI_SETUSETABS", PYSCR_SCI_SETUSETABS)
@@ -1250,6 +1253,7 @@ void export_enums()
12501253
.value("SCI_LINEFROMPOSITION", PYSCR_SCI_LINEFROMPOSITION)
12511254
.value("SCI_POSITIONFROMLINE", PYSCR_SCI_POSITIONFROMLINE)
12521255
.value("SCI_LINESCROLL", PYSCR_SCI_LINESCROLL)
1256+
.value("SCI_SCROLLVERTICAL", PYSCR_SCI_SCROLLVERTICAL)
12531257
.value("SCI_SCROLLCARET", PYSCR_SCI_SCROLLCARET)
12541258
.value("SCI_SCROLLRANGE", PYSCR_SCI_SCROLLRANGE)
12551259
.value("SCI_REPLACESEL", PYSCR_SCI_REPLACESEL)

0 commit comments

Comments
 (0)