Created
June 27, 2020 16:08
-
-
Save Sohaib03/969d432349f3a7a74cbfe460c78674e6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"keys": ["alt+`"], "command": "toggle_terminus_panel" | |
}, | |
{ | |
"keys": ["f6"], "command": "terminus_open", "args": { | |
"cmd": ["python3", "$file"], | |
"cwd": "${file_path:${file}}", | |
"post_window_hooks": [ | |
["carry_file_to_pane", {"direction": "right"}] | |
], | |
"title":"Console", | |
"auto_close":false, | |
"timeit":true, | |
} | |
}, | |
{ | |
"keys": ["f8"], "command": "terminus_open", "args": { | |
"cmd": ["bash", "-c", "g++ -std=c++14 -fsanitize=address -fsanitize=undefined -Wshadow -Wall $file -o $file_base_name && ./$file_base_name"], | |
"cwd": "${file_path:${file}}", | |
"post_window_hooks": [ | |
["carry_file_to_pane", {"direction": "right"}] | |
], | |
"title":"Console", | |
"auto_close":false, | |
"timeit":true, | |
} | |
}, | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment