aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorStephan Seitz <stephan.seitz@fau.de>2022-02-07 22:06:50 +0100
committerStephan Seitz <stephan.seitz@fau.de>2022-02-08 23:37:59 +0100
commit5639b74db0f379c159afcc6ab14bf5dffddae4e8 (patch)
tree1f8a4c9f23dd4c02f67872a2d684c6f51fd591f2 /lua
parentfix(makefile): fallback to c++14 when parser does not have cxx_standard set (diff)
downloadnvim-treesitter-5639b74db0f379c159afcc6ab14bf5dffddae4e8.tar
nvim-treesitter-5639b74db0f379c159afcc6ab14bf5dffddae4e8.tar.gz
nvim-treesitter-5639b74db0f379c159afcc6ab14bf5dffddae4e8.tar.bz2
nvim-treesitter-5639b74db0f379c159afcc6ab14bf5dffddae4e8.tar.lz
nvim-treesitter-5639b74db0f379c159afcc6ab14bf5dffddae4e8.tar.xz
nvim-treesitter-5639b74db0f379c159afcc6ab14bf5dffddae4e8.tar.zst
nvim-treesitter-5639b74db0f379c159afcc6ab14bf5dffddae4e8.zip
chore(makefile): apply fixes to original makefile
Diffstat (limited to 'lua')
-rw-r--r--lua/nvim-treesitter/shell_command_selectors.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/nvim-treesitter/shell_command_selectors.lua b/lua/nvim-treesitter/shell_command_selectors.lua
index eb1860517..b08121981 100644
--- a/lua/nvim-treesitter/shell_command_selectors.lua
+++ b/lua/nvim-treesitter/shell_command_selectors.lua
@@ -113,7 +113,7 @@ function M.select_compile_command(repo, cc, compile_location)
args = {
"--makefile=" .. utils.join_path(utils.get_package_path(), "scripts", "compile_parsers.makefile"),
"CC=" .. cc,
- "CXX_STANDARD=" .. (repo.cxx_standard or 'c++14'),
+ "CXX_STANDARD=" .. (repo.cxx_standard or "c++14"),
},
cwd = compile_location,
},