aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2023-04-16 10:59:04 +0200
committerGitHub <noreply@github.com>2023-04-16 10:59:04 +0200
commitd9e9dc3a06b78d3d1548757348788454f62ea3dc (patch)
tree2dbb6d0a4026c66d2c0af5ceb330dae0d96c3c6d /test
parent42e55ba009ecc14afa1b519c8de02cb30c0d1671 (diff)
downloadrneovim-d9e9dc3a06b78d3d1548757348788454f62ea3dc.tar.gz
rneovim-d9e9dc3a06b78d3d1548757348788454f62ea3dc.tar.bz2
rneovim-d9e9dc3a06b78d3d1548757348788454f62ea3dc.zip
vim-patch:9.0.1455: C++ 20 modules are not recognized (#23124)
Problem: C++ 20 modules are not recognized. Solution: Add patterns to recognize C++ 20 modules as "cpp". (Ben Jackson, closes vim/vim#12261) https://github.com/vim/vim/commit/732d69e1918b28ad0fe16eb9bc5a776c7958122b Co-authored-by: Ben Jackson <puremourning@gmail.com>
Diffstat (limited to 'test')
-rw-r--r--test/old/testdir/test_filetype.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/old/testdir/test_filetype.vim b/test/old/testdir/test_filetype.vim
index 776aaae4ac..4f8181a41e 100644
--- a/test/old/testdir/test_filetype.vim
+++ b/test/old/testdir/test_filetype.vim
@@ -129,7 +129,7 @@ let s:filename_checks = {
\ 'context': ['tex/context/any/file.tex', 'file.mkii', 'file.mkiv', 'file.mkvi', 'file.mkxl', 'file.mklx'],
\ 'cook': ['file.cook'],
\ 'cpon': ['file.cpon'],
- \ 'cpp': ['file.cxx', 'file.c++', 'file.hh', 'file.hxx', 'file.hpp', 'file.ipp', 'file.moc', 'file.tcc', 'file.inl', 'file.tlh'],
+ \ 'cpp': ['file.cxx', 'file.c++', 'file.hh', 'file.hxx', 'file.hpp', 'file.ipp', 'file.moc', 'file.tcc', 'file.inl', 'file.tlh', 'file.cppm', 'file.ccm', 'file.cxxm', 'file.c++m'],
\ 'cqlang': ['file.cql'],
\ 'crm': ['file.crm'],
\ 'crontab': ['crontab', 'crontab.file', '/etc/cron.d/file', 'any/etc/cron.d/file'],