nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 598f13107d54c23d41d2a54d8f49ede622bc6929
parent 248ebf9117ab0f95ce5bd3f5d30c2d6004d50f21
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Thu,  2 Dec 2021 11:29:14 +0100

syntax: sql: add two missing data types -- xml and tsquery

References:
  https://www.postgresql.org/docs/14/datatype-xml.html
  https://www.postgresql.org/docs/14/datatype-textsearch.html#DATATYPE-TSQUERY

Diffstat:
Msyntax/sql.nanorc | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/syntax/sql.nanorc b/syntax/sql.nanorc @@ -5,7 +5,7 @@ comment "-- " # Types. color green "\<(integer|int[248]|(big|small)?(int|serial)|decimal|numeric|real|double precision)\>" -color green "\<(bit( varying)?|boolean|bytea|enum|money|tsvector|uuid)\>" +color green "\<(bit( varying)?|boolean|bytea|enum|money|tsquery|tsvector|uuid|xml)\>" color green "\<(char|varchar|character( varying)?|text)\>" color green "\<(date|interval|time(stamp)?( with(out)? time zone)?)\>" color green "\<(box|circle|line|lseg|path|point|polygon)\>"