Patch 9.0.0049
Problem: Csv and tsv files are not recognized.
Solution: Add patterns fo csv and tsv files. (Leandro Lourenci,
closes #10680)
Files: runtime/filetype.vim, src/testdir/test_filetype.vim
*** ../vim-9.0.0048/runtime/filetype.vim 2022-07-05 18:42:52.301725360
+0100
--- runtime/filetype.vim 2022-07-09 20:26:46.695473206 +0100
***************
*** 404,409 ****
--- 404,412 ----
" Cooklang
au BufNewFile,BufRead *.cook setf cook
+ " CSV Files
+ au BufNewFile,BufRead *.csv setf csv
+
" CUDA Compute Unified Device Architecture
au BufNewFile,BufRead *.cu,*.cuh setf cuda
***************
*** 2028,2033 ****
--- 2031,2039 ----
" TSS - Command Line (temporary)
au BufNewFile,BufReadPost *.tsscl setf tsscl
+ " TSV Files
+ au BufNewFile,BufRead *.tsv setf tsv
+
" TWIG files
au BufNewFile,BufReadPost *.twig setf twig
*** ../vim-9.0.0048/src/testdir/test_filetype.vim 2022-07-05
18:42:52.301725360 +0100
--- src/testdir/test_filetype.vim 2022-07-09 20:16:49.167024258 +0100
***************
*** 128,133 ****
--- 128,134 ----
\ 'csp': ['file.csp', 'file.fdr'],
\ 'css': ['file.css'],
\ 'cterm': ['file.con'],
+ \ 'csv': ['file.csv'],
\ 'cucumber': ['file.feature'],
\ 'cuda': ['file.cu', 'file.cuh'],
\ 'cupl': ['file.pld'],
***************
*** 564,569 ****
--- 565,571 ----
\ 'tsscl': ['file.tsscl'],
\ 'tssgm': ['file.tssgm'],
\ 'tssop': ['file.tssop'],
+ \ 'tsv': ['file.tsv'],
\ 'twig': ['file.twig'],
\ 'typescript.glimmer': ['file.gts'],
\ 'typescriptreact': ['file.tsx'],
*** ../vim-9.0.0048/src/version.c 2022-07-09 04:56:12.522528981 +0100
--- src/version.c 2022-07-09 20:18:44.175133256 +0100
***************
*** 737,738 ****
--- 737,740 ----
{ /* Add new patch number below this line */
+ /**/
+ 49,
/**/
--
>From "know your smileys":
:----} You lie like Pinocchio
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// \\\
\\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/20220709195006.087D01C08DA%40moolenaar.net.