Skip to content

Commit

Permalink
Rename ".NET IL" to "CIL Assembly".
Browse files Browse the repository at this point in the history
Sort supported items in readme.md.
  • Loading branch information
zufuliu committed Mar 28, 2020
1 parent 0d028fb commit 1003b8b
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions doc/FileExt.txt
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,9 @@ Batch File
cmd


CIL Assembly
il

CMake Script
cmake
ctest
Expand Down Expand Up @@ -360,9 +363,6 @@ MATLAB Code
sci Scilab


.NET IL
il

Nsis Setup Script
nsi NSIS Script
nsh NSIS Header File
Expand Down
Binary file modified doc/Notepad2 DarkTheme.ini
Binary file not shown.
14 changes: 7 additions & 7 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,28 +37,28 @@ Or build from source, see the [Wiki](https://github.com/zufuliu/notepad2/wiki/Bu
* AutoIt Script
* AWK
* GNU AWK
* Windows Batch Script, [Screenshots](https://github.com/zufuliu/notepad2/wiki/Screenshots#batch)
* .NET IL
* [CMake](../master/tools/lang/CMake.cmake), [Screenshots](https://github.com/zufuliu/notepad2/wiki/Screenshots#cmake), up to 3.16
* Batch Script, [Screenshots](https://github.com/zufuliu/notepad2/wiki/Screenshots#batch)
* C#, [Screenshots](https://github.com/zufuliu/notepad2/wiki/Screenshots#c)
* C# Doc
* Vala
* C/C++, [Screenshots](https://github.com/zufuliu/notepad2/wiki/Screenshots#cc)
* Objective-C/C++, [Screenshots](https://github.com/zufuliu/notepad2/wiki/Screenshots#objective-cc)
* [C Standard Library](../master/tools/lang/C.c), up to C11.
* [C++ STL](../master/tools/lang/CPP.cpp), up to C++20.
* C#, [Screenshots](https://github.com/zufuliu/notepad2/wiki/Screenshots#c)
* C# Doc
* Vala
* CSS Style Sheet
* Sassy CSS
* Less CSS
* HSS
* [CMake](../master/tools/lang/CMake.cmake), [Screenshots](https://github.com/zufuliu/notepad2/wiki/Screenshots#cmake), up to 3.16
* Common Intermediate Language
* Configuration / Properties File
* Apache Configuration File
* D
* Diff/Patch File
* Doxygen
* F#
* Fortran
* GNU Fortran
* F#
* [GN Build](../master/tools/lang/GN.gn), up to GN 2019-03-13.
* Go
* Gradle, [Screenshots](https://github.com/zufuliu/notepad2/wiki/Screenshots#gradle)
Expand Down
2 changes: 1 addition & 1 deletion src/EditLexer.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ typedef const EDITLEXER *LPCEDITLEXER;
//#define NP2LEX_IDL 63006 // SCLEX_CPP Interface Definition Language
#define NP2LEX_D 63007 // SCLEX_CPP D Source
#define NP2LEX_ASY 63008 // SCLEX_CPP Asymptote Code
#define NP2LEX_CIL 63009 // SCLEX_CIL .NET IL
#define NP2LEX_CIL 63009 // SCLEX_CIL CIL Assembly
//#define NP2LEX_OBJC 63010 // SCLEX_CPP Objective C/C++
#define NP2LEX_AS 63011 // SCLEX_CPP ActionScript
#define NP2LEX_HAXE 63012 // SCLEX_CPP HaXe Script
Expand Down
2 changes: 1 addition & 1 deletion src/EditLexers/stlCIL.c
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ static EDITSTYLE Styles_CIL[] = {

EDITLEXER lexCIL = {
SCLEX_CIL, NP2LEX_CIL,
EDITLEXER_HOLE(L".NET IL", Styles_CIL),
EDITLEXER_HOLE(L"CIL Assembly", Styles_CIL),
L"il",
&Keywords_CIL,
Styles_CIL
Expand Down
4 changes: 2 additions & 2 deletions src/Styles.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ extern EDITLEXER lexAwk;

extern EDITLEXER lexBatch;

extern EDITLEXER lexCIL;
extern EDITLEXER lexCMake;
extern EDITLEXER lexCONF;

Expand Down Expand Up @@ -96,7 +97,6 @@ extern EDITLEXER lexLua;
extern EDITLEXER lexMake;
extern EDITLEXER lexMatlab;

extern EDITLEXER lexCIL;
extern EDITLEXER lexNsis;

extern EDITLEXER lexPascal;
Expand Down Expand Up @@ -158,6 +158,7 @@ static const PEDITLEXER pLexArray[ALL_LEXER_COUNT] = {

&lexBatch,

&lexCIL,
&lexCMake,
&lexCONF,

Expand Down Expand Up @@ -192,7 +193,6 @@ static const PEDITLEXER pLexArray[ALL_LEXER_COUNT] = {
&lexMake,
&lexMatlab,

&lexCIL,
&lexNsis,

&lexPascal,
Expand Down

0 comments on commit 1003b8b

Please sign in to comment.