diff options
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/c_cpp_properties.json | 1 | ||||
-rw-r--r-- | .vscode/launch.json | 1 | ||||
-rw-r--r-- | .vscode/settings.json | 22 | ||||
-rw-r--r-- | .vscode/tasks.json | 3 |
4 files changed, 24 insertions, 3 deletions
diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index f7487f5..cf04612 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -17,6 +17,7 @@ "/usr/include" ], "defines": [ + "CONTROL_SUPPORT_LUA", "AFB_BINDING_PREV3", "USE_API_DYN" ], diff --git a/.vscode/launch.json b/.vscode/launch.json index b163338..a2162c2 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -13,6 +13,7 @@ "--port=5678", "--name=afb-xds", "--ws-client=unix:/tmp/supervisor", + "--ws-client=unix:/tmp/harvester", "--workdir=${workspaceRoot}/build/package/", "--ldpaths=lib", "--roothttp=htdocs", diff --git a/.vscode/settings.json b/.vscode/settings.json index 2777e9f..d41869a 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,11 @@ { + "files.exclude": { + ".vscode": true, + "nbproject": true, + "build": true, + "**/.git": true, + "**/node_modules": true + }, "[json]": { "editor.quickSuggestions": { "strings": true @@ -42,12 +49,22 @@ "unistd.h": "c", "supervisor.h": "c", "sstream": "c", - "stat.h": "c" + "stat.h": "c", + "filescan-utils.h": "c", + "optional": "cpp", + "ostream": "cpp", + "system_error": "cpp", + "supervisor-api.h": "c", + "string_view": "c", + "initializer_list": "c", + "valarray": "c" }, // Words to add to dictionary for a workspace. "cSpell.words": [ "CTLP", + "SPVR", "callbinder", + "ctlso", "gotevent", "ldpaths", "lightgreen", @@ -58,7 +75,8 @@ "replyerr", "replyok", "reqid", - "roothttp" + "roothttp", + "spath" ], "C_Cpp.intelliSenseEngineFallback": "Enabled" } diff --git a/.vscode/tasks.json b/.vscode/tasks.json index d1709f7..fc33950 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -17,7 +17,8 @@ "command": "clear && cd build && make", "presentation": { "echo": true, - "reveal": "always", + //"reveal": "always", + "reveal": "silent", "focus": false, "panel": "shared" }, |