aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Anders <8965202+gpanders@users.noreply.github.com>2022-03-24 08:05:13 -0600
committerGitHub <noreply@github.com>2022-03-24 08:05:13 -0600
commit02fd00c042d2b8a66c892dd31c1659ee98a1dbbf (patch)
treeb2574f3d65f34518ae875147b5d8452463318d3c
parentb438251a0edcb81ada1992157443c829960da116 (diff)
downloadrneovim-02fd00c042d2b8a66c892dd31c1659ee98a1dbbf.tar.gz
rneovim-02fd00c042d2b8a66c892dd31c1659ee98a1dbbf.tar.bz2
rneovim-02fd00c042d2b8a66c892dd31c1659ee98a1dbbf.zip
feat(runtime): include Lua in C++ ftplugin (#17843)
-rw-r--r--runtime/ftplugin/cpp.vim1
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/ftplugin/cpp.vim b/runtime/ftplugin/cpp.vim
index f9d31cbec3..58c4e4b24a 100644
--- a/runtime/ftplugin/cpp.vim
+++ b/runtime/ftplugin/cpp.vim
@@ -10,6 +10,7 @@ endif
" Behaves mostly just like C
runtime! ftplugin/c.vim ftplugin/c_*.vim ftplugin/c/*.vim
+runtime! ftplugin/c.lua ftplugin/c_*.lua ftplugin/c/*.lua
" C++ uses templates with <things>
" Disabled, because it gives an error for typing an unmatched ">".