-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to Scintilla v4.1.4 files, fix PA zip
Closes #11
- Loading branch information
Showing
12 changed files
with
763 additions
and
395 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,8 +25,9 @@ to use `*`, `-` and `_` to act as surround characters as the above examples do. | |
## Installation | ||
|
||
Use the built in Plugin Admin to automatically install the plugin. | ||
|
||
## Development | ||
The code has been developed using Visual Studio 2017. Building the code will generate the DLL which can be used by Notepad++. For convenience, MSVC copies the DLL into the Notepad++ plugin directory. | ||
The code is developed using Visual Studio 2017. Building the code will generate a DLL which can be used by Notepad++. For convenience, Visual Studio copies the DLL into the Notepad++ plugin directory. | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
dail8859
via email
Author
Owner
|
||
|
||
## License | ||
This code is released under the [GNU General Public License version 2](http://www.gnu.org/licenses/gpl-2.0.txt). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// Scintilla source code edit control | ||
/** @file Sci_Position.h | ||
** Define the Sci_Position type used in Scintilla's external interfaces. | ||
** These need to be available to clients written in C so are not in a C++ namespace. | ||
**/ | ||
// Copyright 2015 by Neil Hodgson <[email protected]> | ||
// The License.txt file describes the conditions under which this software may be distributed. | ||
|
||
#ifndef SCI_POSITION_H | ||
#define SCI_POSITION_H | ||
|
||
#include <stddef.h> | ||
|
||
// Basic signed type used throughout interface | ||
typedef ptrdiff_t Sci_Position; | ||
|
||
// Unsigned variant used for ILexer::Lex and ILexer::Fold | ||
typedef size_t Sci_PositionU; | ||
|
||
// For Sci_CharacterRange which is defined as long to be compatible with Win32 CHARRANGE | ||
typedef long Sci_PositionCR; | ||
|
||
#ifdef _WIN32 | ||
#define SCI_METHOD __stdcall | ||
#else | ||
#define SCI_METHOD | ||
#endif | ||
|
||
#endif |
Oops, something went wrong.
"for convenience"?
Make sure you have a copy of the existing/stable plugin because you're probably overwriting it, ruining your working installation.