diff options
author | thatch <devnull@localhost> | 2008-07-23 20:57:12 -0700 |
---|---|---|
committer | thatch <devnull@localhost> | 2008-07-23 20:57:12 -0700 |
commit | 024ffa30cbf1fc8fa8f562007c92a1905b557516 (patch) | |
tree | 9b70fe61688477237a000587e7ef3dce06567eab /docs/src | |
parent | 4680716d335e4871e1296b7015d1ef69b453c0f7 (diff) | |
download | pygments-024ffa30cbf1fc8fa8f562007c92a1905b557516.tar.gz |
Add `Keyword.Namespace` token type, initial patch provided by Pete Curry.
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/tokens.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/src/tokens.txt b/docs/src/tokens.txt index 5451ec8c..9ef0df8d 100644 --- a/docs/src/tokens.txt +++ b/docs/src/tokens.txt @@ -117,6 +117,10 @@ Keyword Tokens For keywords used for variable declaration (e.g. ``var`` in some programming languages like JavaScript). +`Keyword.Namespace` + For keywords used for namespace declarations (e.g. ``import`` in Python and + Java and ``package`` in Java). + `Keyword.Pseudo` For keywords that aren't really keywords (e.g. ``None`` in old Python versions). |