diff options
author | thatch <devnull@localhost> | 2008-07-23 21:02:18 -0700 |
---|---|---|
committer | thatch <devnull@localhost> | 2008-07-23 21:02:18 -0700 |
commit | 3f89e1fde065a554307f89cf185d602cf8fd12fb (patch) | |
tree | 86fe7759ce93bd2dbdf0a73b7aa60c12f2e7e57b /pygments/styles/vim.py | |
parent | fe5eb1882310eeb8789ed0e0afa7f0a9b5a986e0 (diff) | |
download | pygments-3f89e1fde065a554307f89cf185d602cf8fd12fb.tar.gz |
Vim style updates, patch provided by Pete Curry.
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", |