changeset 23960:dbc6c893a67a v8.2.2522

patch 8.2.2522: Beancount filetype not recognized Commit: https://github.com/vim/vim/commit/9bbd883b3528b37dcacad22ad58861105a9ae428 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Feb 17 12:25:49 2021 +0100 patch 8.2.2522: Beancount filetype not recognized Problem: Beancount filetype not recognized. Solution: Add a detection rule. (Brian Ryall, closes https://github.com/vim/vim/issues/7859)
author Bram Moolenaar <Bram@vim.org>
date Wed, 17 Feb 2021 12:30:04 +0100
parents 23cc161f0814
children 1b7f39ff8d78
files runtime/filetype.vim src/testdir/test_filetype.vim src/version.c
diffstat 3 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/runtime/filetype.vim
+++ b/runtime/filetype.vim
@@ -216,6 +216,9 @@ au BufNewFile,BufRead *.bc			setf bc
 " BDF font
 au BufNewFile,BufRead *.bdf			setf bdf
 
+" Beancount
+au BufNewFile,BufRead *.beancount		setf beancount
+
 " BibTeX bibliography database file
 au BufNewFile,BufRead *.bib			setf bib
 
--- a/src/testdir/test_filetype.vim
+++ b/src/testdir/test_filetype.vim
@@ -79,6 +79,7 @@ let s:filename_checks = {
     \ 'bzl': ['file.bazel', 'file.bzl', 'WORKSPACE'],
     \ 'bc': ['file.bc'],
     \ 'bdf': ['file.bdf'],
+    \ 'beancount': ['file.beancount'],
     \ 'bib': ['file.bib'],
     \ 'bindzone': ['named.root', '/bind/db.file', '/named/db.file', 'any/bind/db.file', 'any/named/db.file'],
     \ 'blank': ['file.bl'],
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    2522,
+/**/
     2521,
 /**/
     2520,