aboutsummaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2018-05-17 03:34:41 +0200
committerdec05eba <dec05eba@protonmail.com>2018-05-17 03:34:43 +0200
commite4cc9c03bf2578cbe2b8c9e909e9803ff856dd9d (patch)
tree88f9a2c72c678ff0df966769efb67184604c9ea1 /.vscode
parent528a61c86876de814ff4e65855926a750ba24587 (diff)
Fix url parsing in text, sort messages by timestamp
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json27
-rw-r--r--.vscode/settings.json9
2 files changed, 36 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000..d49b13b
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,27 @@
+{
+ // Use IntelliSense to learn about possible attributes.
+ // Hover to view descriptions of existing attributes.
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "name": "(gdb) Launch",
+ "type": "cppdbg",
+ "request": "launch",
+ "program": "${workspaceFolder}/sibs-build/debug/dchat",
+ "args": [],
+ "stopAtEntry": false,
+ "cwd": "${workspaceFolder}",
+ "environment": [],
+ "externalConsole": true,
+ "MIMode": "gdb",
+ "setupCommands": [
+ {
+ "description": "Enable pretty-printing for gdb",
+ "text": "-enable-pretty-printing",
+ "ignoreFailures": true
+ }
+ ]
+ }
+ ]
+} \ No newline at end of file
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 0000000..7a10503
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,9 @@
+{
+ "files.associations": {
+ "*.ipp": "cpp",
+ "hash_map": "cpp",
+ "hash_set": "cpp",
+ "*.tcc": "cpp",
+ "string_view": "cpp"
+ }
+} \ No newline at end of file