Linter and Correction update
Some checks failed
Test Neovim config on push / build (ubuntu-20.04) (push) Failing after 20s

This commit is contained in:
2024-07-08 20:28:54 +02:00
parent 39b9d351c0
commit 7e89acf09f
3 changed files with 34 additions and 20 deletions

View File

@@ -122,10 +122,10 @@ endsnippet
snippet project "Project" b
project ${1:Default} is
for Source_Dirs use ("${2:src}");
for Object_Dir use "${3:obj}";
for Exec_Dir use "${4:bin}";
for Main use ("${5:main.adb}");
for Languages use ("Ada");
for Source_Dirs use ("${2:src}");
for Object_Dir use "${3:obj}";
for Exec_Dir use "${4:bin}";
for Main use ("${5:main.adb}");
for Languages use ("Ada");
end $1;
endsnippet