This commit is contained in:
2025-12-07 16:08:29 +01:00
parent 17e87a9c5f
commit 0b0499e07a
3 changed files with 3 additions and 1 deletions
+1
View File
@@ -174,6 +174,7 @@ local file_specific = {
if not has_makefile() then
vim.bo.makeprg = 'tcc -run %'
end
vim.bo.expandtab = false
end,
cs = function()
vim.bo.makeprg = "dotnet"
+1 -1
View File
@@ -166,7 +166,7 @@ snippet ,,n "" Ai
\n
snippet foreacharr
for (${1:type} *${2:item} = ${3:array}; ${2:item} < &${3:array}[${4:size}]; ${2:item}++) {
for (${1:type} *${2:item} = (${3:array}); ${2:item} < &(${3:array})[${4:size}]; ${2:item}++) {
$0
}
snippet flags