Add template code for missing Lexers (issue #1258)#2469
Closed
Cyrillev91 wants to merge 1 commit intonotepad-plus-plus:masterfrom
Closed
Add template code for missing Lexers (issue #1258)#2469Cyrillev91 wants to merge 1 commit intonotepad-plus-plus:masterfrom
Cyrillev91 wants to merge 1 commit intonotepad-plus-plus:masterfrom
Conversation
MAPJe71
suggested changes
Oct 23, 2016
Contributor
MAPJe71
left a comment
There was a problem hiding this comment.
Please read and apply Guidelines for pull requests.
PowerEditor/src/Parameters.h
Outdated
| const int LANG_INDEX_TYPE5 = 6; | ||
| const int LANG_INDEX_TYPE6 = 7; | ||
| const int LANG_INDEX_TYPE7 = 8; | ||
| const int LANG_INDEX_TYPE8 = 9; /* Sintillia : keyword list 0 to 8 (KEYWORDSET_MAX = 8)*/ |
| const char * keyWords_char = wmc->wchar2char(pKwArray[LANG_INDEX_TYPE7], CP_ACP); | ||
| setKeywords(langType, keyWords_char, LANG_INDEX_TYPE7); | ||
| } | ||
| //Sintillia : keyword list 0 to 8 (KEYWORDSET_MAX = 8) |
Contributor
|
Thanks! |
Contributor
Author
|
@MAPJe71 PR updated (Scintilla) |
Member
|
No empty template. Please add only lexers you need. |
Contributor
Author
|
Hi @donho and all, But as Mr. @dail8859 says in issue #1258 "Unfortunately adding a new lexer is a bit tedious, and every time a new lexer is added all other PRs for lexers need fixed because there will be merge conficts :(" This PR was to simplify adding lexer and "connect" lexer already in Scintilla. Until I create a new PR, can you add the following PR ? :
|
chcg
added a commit
to chcg/notepad-plus-plus
that referenced
this pull request
Apr 3, 2025
Release 5.5.6 (https://www.scintilla.org/scintilla556.zip) Released 2 April 2025. Disallow changing case of protected text. Bug notepad-plus-plus#2463. Return enumeration type from MarkerSymbolDefined to match MarkerDefine. Bug notepad-plus-plus#2469. On Win32, use DirectWrite for autocompletion lists when DirectWrite chosen for document text. On Win32, optimize case-insensitive DBCS search to be around 5 times faster by using 64K memory to cache folding data for each DBCS code page used. On Win32, fix a crash with bidirectional text. When using Visual C++ through nmake, fix building for ARM64. Feature notepad-plus-plus#1546. On Qt, draw clipped UTF-8 text correctly. Bug notepad-plus-plus#2464. On Qt, avoid a dwell start when the mouse is moved outside the Scintilla widget. Bug notepad-plus-plus#2466. On Qt, autoCompleteSelection converts from local encoding when not in Unicode mode. Bug notepad-plus-plus#2465. Release 5.4.4 (https://www.scintilla.org/lexilla544.zip) Released 2 April 2025. Fix building for ARM64. Pull request notepad-plus-plus#308.
donho
pushed a commit
that referenced
this pull request
Apr 8, 2025
Release 5.5.6 (https://www.scintilla.org/scintilla556.zip) Released 2 April 2025. * Disallow changing case of protected text. Bug #2463. * Return enumeration type from MarkerSymbolDefined to match MarkerDefine. Bug #2469. * On Win32, use DirectWrite for autocompletion lists when DirectWrite chosen for document text. * On Win32, optimize case-insensitive DBCS search to be around 5 times faster by using 64K memory to cache folding data for each DBCS code page used. * On Win32, fix a crash with bidirectional text. * When using Visual C++ through nmake, fix building for ARM64. Feature #1546. * On Qt, draw clipped UTF-8 text correctly. Bug #2464. * On Qt, avoid a dwell start when the mouse is moved outside the Scintilla widget. Bug #2466. * On Qt, autoCompleteSelection converts from local encoding when not in Unicode mode. Bug #2465. Release 5.4.4 (https://www.scintilla.org/lexilla544.zip) Released 2 April 2025. * Fix building for ARM64. Pull request #308. Close #16373
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
See my coment in Issue #1258