diff options
Diffstat (limited to 'pygments/lexers/postgres.py')
-rw-r--r-- | pygments/lexers/postgres.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pygments/lexers/postgres.py b/pygments/lexers/postgres.py index 2418a009..2f4dad72 100644 --- a/pygments/lexers/postgres.py +++ b/pygments/lexers/postgres.py @@ -122,7 +122,8 @@ class PostgresLexer(RegexLexer): ] } -re_prompt = re.compile(r'^([a-zA-Z_][a-zA-Z0-9_]+)?[=\-\(][#>]') +re_prompt = re.compile(r'^.*?[=\-\(][#>]') + re_psql_command = re.compile(r'(\s*)(\\.+?)(\s+)$') re_error = re.compile(r'ERROR:') re_message = re.compile(r'((?:DEBUG|INFO|NOTICE|WARNING|ERROR|HINT|LINE [0-9]+):)(.*?\n)') |