diff options
author | blackbird <devnull@localhost> | 2007-01-14 00:16:26 +0100 |
---|---|---|
committer | blackbird <devnull@localhost> | 2007-01-14 00:16:26 +0100 |
commit | 1d2da667901525d0aa6e708e98e595ab8e739548 (patch) | |
tree | 88a8a06b86d12905104295c85f14bad8d447df04 | |
parent | ef78519c3f2bbe3a3ef6cf916964755e2252d76e (diff) | |
download | pygments-1d2da667901525d0aa6e708e98e595ab8e739548.tar.gz |
[svn] added "partial" to csharp keyword list
-rw-r--r-- | pygments/lexers/dotnet.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/dotnet.py b/pygments/lexers/dotnet.py index 63ae8e6a..95cb720a 100644 --- a/pygments/lexers/dotnet.py +++ b/pygments/lexers/dotnet.py @@ -60,7 +60,7 @@ class CSharpLexer(RegexLexer): r'internal|is|lock|nwe|null|operator|' r'out|override|params|private|protected|public|readonly|' r'ref|return|sealed|sizeof|stackalloc|static|' - r'switch|this|throw|true|try|typeof|' + r'switch|this|throw|true|try|typeof|partial|' r'unchecked|unsafe|virtual|void|while|' r'get|set|new)\b', Keyword), (r'(bool|byte|char|decimal|double|float|int|long|object|sbyte|' |