diff options
author | thatch <devnull@localhost> | 2008-08-14 23:39:04 -0700 |
---|---|---|
committer | thatch <devnull@localhost> | 2008-08-14 23:39:04 -0700 |
commit | 424366452ddc8619e89d3580aefb59e2bfae26b0 (patch) | |
tree | 5e6ebe5fc05e5b573c6e5154bd96621f693025e2 /pygments/styles/vim.py | |
parent | e6e3faecd77f18ba8977ea1f8832578d683f5930 (diff) | |
parent | 3e1d51e070744961d57aba8b7b2110e3ecaddacf (diff) | |
download | pygments-424366452ddc8619e89d3580aefb59e2bfae26b0.tar.gz |
Merge Scala support from Krzysiek Goj's branch
Diffstat (limited to 'pygments/styles/vim.py')
-rw-r--r-- | pygments/styles/vim.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/pygments/styles/vim.py b/pygments/styles/vim.py index d941d136..43d1771f 100644 --- a/pygments/styles/vim.py +++ b/pygments/styles/vim.py @@ -25,11 +25,13 @@ class VimStyle(Style): styles = { Token: "#cccccc", Whitespace: "", - Comment: "#00cdcd", + Comment: "#000080", Comment.Preproc: "", Comment.Special: "bold #cd0000", Keyword: "#cdcd00", + Keyword.Declaration: "#00cd00", + Keyword.Namespace: "#cd00cd", Keyword.Pseudo: "", Keyword.Type: "#00cd00", @@ -37,9 +39,8 @@ class VimStyle(Style): Operator.Word: "#cdcd00", Name: "", - Name.Class: "#cd00cd", + Name.Class: "#00cdcd", Name.Builtin: "#cd00cd", - Name.Namespace: "bold #5c5cff", Name.Exception: "bold #666699", Name.Variable: "#00cdcd", @@ -48,8 +49,8 @@ class VimStyle(Style): Generic.Heading: "bold #000080", Generic.Subheading: "bold #800080", - Generic.Deleted: "#A00000", - Generic.Inserted: "#00A000", + Generic.Deleted: "#cd0000", + Generic.Inserted: "#00cd00", Generic.Error: "#FF0000", Generic.Emph: "italic", Generic.Strong: "bold", |