diff options
author | blackbird <devnull@localhost> | 2006-12-21 17:41:14 +0100 |
---|---|---|
committer | blackbird <devnull@localhost> | 2006-12-21 17:41:14 +0100 |
commit | 95377ce6c229ec8cb1df8e358337fc524b8476c8 (patch) | |
tree | ce48123f82c6737f7d4f5c9d471f9c972db7546f /scripts/vim2pygments.py | |
parent | f9b914f5dd9571f61cbcabec25f9c83030029f1b (diff) | |
download | pygments-95377ce6c229ec8cb1df8e358337fc524b8476c8.tar.gz |
[svn] added hashes to vim2pygments script where missing, renamed pygment.1 to pygmentize.1
Diffstat (limited to 'scripts/vim2pygments.py')
-rw-r--r-- | scripts/vim2pygments.py | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/scripts/vim2pygments.py b/scripts/vim2pygments.py index 42cd151d..09391beb 100644 --- a/scripts/vim2pygments.py +++ b/scripts/vim2pygments.py @@ -24,22 +24,22 @@ SCRIPT_VERSION = '0.1' COLORS = { # Numeric Colors - '0': '000000', - '1': 'c00000', - '2': '008000', - '3': '808000', - '4': '0000c0', - '5': 'c000c0', - '6': '008080', - '7': 'c0c0c0', - '8': '808080', - '9': 'ff6060', - '10': '00ff00', - '11': 'ffff00', - '12': '8080ff', - '13': 'ff40ff', - '14': '00ffff', - '15': 'ffffff', + '0': '#000000', + '1': '#c00000', + '2': '#008000', + '3': '#808000', + '4': '#0000c0', + '5': '#c000c0', + '6': '#008080', + '7': '#c0c0c0', + '8': '#808080', + '9': '#ff6060', + '10': '#00ff00', + '11': '#ffff00', + '12': '#8080ff', + '13': '#ff40ff', + '14': '#00ffff', + '15': '#ffffff', # Named Colors 'alice': '#f0f8ff', 'aliceblue': '#f0f8ff', |