patch 9.0.1319: PRQL files are not recognized v9.0.1319
authorMatthias Queitsch <matthias.queitsch@mailbox.org>
Sat, 18 Feb 2023 12:04:37 +0000 (12:04 +0000)
committerBram Moolenaar <Bram@vim.org>
Sat, 18 Feb 2023 12:04:37 +0000 (12:04 +0000)
Problem:    PRQL files are not recognized.
Solution:   Add a filetype pattern for PRQL files. (Matthias Queitsch,
            closes #12018)

runtime/filetype.vim
src/testdir/test_filetype.vim
src/version.c

index 7489c33c5b5a13cc52d74df493a650a109bf7ec3..ac82fe31e3a3bf1120f2abe4ec58f87f10a68bd2 100644 (file)
@@ -2008,6 +2008,9 @@ au BufNewFile,BufRead *.sql                       call dist#ft#SQL()
 " SQLJ
 au BufNewFile,BufRead *.sqlj                   setf sqlj
 
+" PRQL
+au BufNewFile,BufRead *.prql                   setf prql
+
 " SQR
 au BufNewFile,BufRead *.sqr,*.sqi              setf sqr
 
index 20f164aa5f5b00cc19ac57217b03cbdb64b7c5b1..8e88fa55e7fcd961ad61a89979265a3438b9602e 100644 (file)
@@ -549,6 +549,7 @@ let s:filename_checks = {
     \ 'spyce': ['file.spy', 'file.spi'],
     \ 'sql': ['file.tyb', 'file.typ', 'file.tyc', 'file.pkb', 'file.pks'],
     \ 'sqlj': ['file.sqlj'],
+    \ 'prql': ['file.prql'],
     \ 'sqr': ['file.sqr', 'file.sqi'],
     \ 'squid': ['squid.conf'],
     \ 'squirrel': ['file.nut'],
index bcd24fa902e4efe79783fe3c3d7c12afe8ccbd4f..d6cee20a703b2fd89f59e677f2204478f8a7499e 100644 (file)
@@ -695,6 +695,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1319,
 /**/
     1318,
 /**/