mirror of
				https://github.com/notepad-plus-plus/notepad-plus-plus.git
				synced 2025-10-31 11:34:05 +01:00 
			
		
		
		
	Update with https://www.scintilla.org/scintilla521.zip https://www.scintilla.org/lexilla515.zip - fix setting to bring Scintilla::PositionCR from ScintillaStructures.h inline with Sci_Position.h Sci_PositionCR - add workaround to enable lexer for searchResult commented out SCI_SETILEXER call on searchResult to get one result which is correctly handled by the lexer, added comment about the current problem with property @MarkingsStruct which seems to disappear after call to SCI_SETILEXER or CreateLexer - corrected usage of ObjC lexer - removed unnecessary filter stuff - use own sections for scintilla and lexilla build targets and allow parallel builds - as libscilex is no longer existing, changed to libscintilla - adapt makefiles and cmake - use VS2019 - started simple changes for createlexer adaptations, nullpointercheck missing on return of lexer name from deprecated LexerNameFromID -> undefined behaviour - movement from id -> lexer name, mostly done via LexerNameFromID + switching off corresponding compiler warning - changed to SCI_SETILEXER from SCI_SETLEXER, SCI_SETLEXERLANGUAGE needs to be corrected, see Scintilla5Migration.html - just commented out: SCI_LOADLEXERLIBRARY Fix #10504, close #11419
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
|  0 400 400   % Examples of each style 0..8 except for SCE_MATLAB_COMMAND(2) which has a line ending bug
 | |
|  1 400 400   
 | |
|  0 400 400   % White space=0
 | |
|  0 400 400      %
 | |
|  1 400 400   
 | |
|  0 400 400   % Comment=1
 | |
|  0 400 400   % Line comment
 | |
|  1 400 400   
 | |
|  0 400 400   % Next line is comment in Ocatve but not Matlab
 | |
|  0 400 400   # Octave comment
 | |
|  1 400 400   
 | |
|  0 400 400   %{
 | |
|  0 400 400   Block comment.
 | |
|  0 400 400   %}
 | |
|  1 400 400   
 | |
|  0 400 400   % Command=2
 | |
|  1 400 400   
 | |
|  0 400 400   %{
 | |
|  0 400 400   Omitted as this places a style transiton between \r and \n
 | |
|  0 400 400   !rmdir oldtests
 | |
|  0 400 400   %}
 | |
|  1 400 400   
 | |
|  0 400 400   % Number=3
 | |
|  0 400 400   33.3
 | |
|  1 400 400   
 | |
|  0 400 400   % Keyword=4
 | |
|  0 400 400   global x
 | |
|  1 400 400   
 | |
|  0 400 400   % Single Quoted String=5
 | |
|  0 400 400   'string'
 | |
|  1 400 400   
 | |
|  0 400 400   % Operator=6
 | |
|  0 400 400   [X,Y] = meshgrid(-10:0.25:10,-10:0.25:10);
 | |
|  1 400 400   
 | |
|  0 400 400   % Identifier=7
 | |
|  0 400 400   identifier = 2
 | |
|  1 400 400   
 | |
|  0 400 400   % Double Quoted String=8
 | |
|  0 400 400   "string"
 | |
|  1 400 400   
 | |
|  0 400 400   % This loop should fold
 | |
|  2 400 401 + for i = 1:5
 | |
|  0 401 401 |     x(i) = 3 * i;
 | |
|  0 401 400 | end
 | |
|  1 400 400    |