From c73d463036f5c396da9793553fe6aafe3774da58 Mon Sep 17 00:00:00 2001 From: MrMelon Date: Thu, 29 Apr 2021 17:29:59 +0100 Subject: [PATCH] vscode config changes --- .vscode/c_cpp_properties.json | 5 +++-- .vscode/settings.json | 6 ++++++ 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 .vscode/settings.json diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index 5c3a9c9..4b217c1 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -3,9 +3,10 @@ { "name": "Linux", "includePath": [ - "${workspaceFolder}/src/intf/**" + "${workspaceFolder}/src/intf/**", + "/usr/include/pango-1.0" ], - "compilerPath": "/usr/bin/gcc", + "compilerPath": "/usr/bin/gcc" } ], "version": 4 diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..3c7d7d4 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,6 @@ +{ + "files.associations": { + "*.py": "python", + "pango-font.h": "c" + } +} \ No newline at end of file