diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-02-17 12:25:49 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-02-17 12:25:49 +0100 |
commit | 9bbd883b3528b37dcacad22ad58861105a9ae428 (patch) | |
tree | 03986b32de59322b02ef9fbd1363be4de3268d90 /src | |
parent | 333bd56422d840961c6df51d4450c884f8500994 (diff) | |
download | vim-git-9bbd883b3528b37dcacad22ad58861105a9ae428.tar.gz |
patch 8.2.2522: Beancount filetype not recognizedv8.2.2522
Problem: Beancount filetype not recognized.
Solution: Add a detection rule. (Brian Ryall, closes #7859)
Diffstat (limited to 'src')
-rw-r--r-- | src/testdir/test_filetype.vim | 1 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/testdir/test_filetype.vim b/src/testdir/test_filetype.vim index 4104ec2b3..06b8e997c 100644 --- 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'], diff --git a/src/version.c b/src/version.c index 7323b8ff2..304a7301f 100644 --- 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, |