jspw / VS-Code-Config

VS Code Setting (Live input output) to make competitive programming easy and program analysis !
GNU General Public License v3.0
121 stars 48 forks source link

Vs code Config not working #16

Closed Vinit-Pathak closed 11 months ago

Vinit-Pathak commented 11 months ago

Whatever setting you've mentioned over here I have done all exactly but it's not working when I press ctrl + shift + B then in downward something like building is happening for 5 seconds then it also stops Please tell me how I can resolve this issue...

https://github.com/jspw/VS-Code-Config/assets/110463455/4ecf8687-c22c-479d-babf-6e3c5446c601

jspw commented 11 months ago

looks like there is a error in the build console. can you check and share the logs with me? @Vinit-Pathak

Vinit-Pathak commented 11 months ago

which logs??? where can i find this logs??

Vinit-Pathak commented 11 months ago

or we can do one thing we can connect with each other through Snapchat or Instagram where I can share my anydesk code with you so that you can do the respective setting in my vscode

snapchat id -- (dattebayo.xo) insta id -- (_.Vinit.__) there is 3 underscore in starting and 4 underscore in ending

jspw commented 11 months ago

We can but if we can fix this here, it will be more helpful for others facing the same issues.

In you vscode, looook at the botttom left corner and you will see the icons of warning and otther tthinngs. You cann click onn tthatt after hitting Ctrl+shft+B.

image

Or you cannn justt open terminal using ctrl+` .

It can be something like that

image

If you have selected tthe terminal tab thann it will be your terminal (i am using zsh)

image

Now at the right cornnner you can see that a (x) icon is here which meanns the annother tterminal where we can finnd the error llog that happened on running your code.

In my case I have some syntax error here :

image

Cann you give me that one ? Allso copy and paste the tasks.jsonn fille here too so I can double check. Thanks @Vinit-Pathak

Vinit-Pathak commented 11 months ago

After pressing crtl shift B , now this is happening

https://github.com/jspw/VS-Code-Config/assets/110463455/4426b76b-88c6-4622-b7cb-951c9ae6bba4

Vinit-Pathak commented 11 months ago

my task.json

{ "version": "2.0.0", "tasks": [ { "label": "Compile and run", "type": "shell", "command": "", "args": [ "copy", "\"${file}\"", "${workspaceFolder}\jspwTest.cpp", "&&", "g++", "jspwTest.cpp", "-o", "jspwTest", "&&", "jspwTest", "<", "input.txt", ">", "output.txt", "&&", "del", "jspwTest.exe", "&&", "del", "jspwTest.cpp" ], "presentation": { "reveal": "never" }, "group": "build", "problemMatcher": { "owner": "cpp", "fileLocation": [ "relative", "${workspaceRoot}" ], "pattern": { "regexp": "^(.):(\d+):(\d+):\s+(warning|error):\s+(.)$", "file": 1, "line": 2, "column": 3, "severity": 4, "message": 5 } } }, { "type": "cppbuild", "label": "C/C++: g++.exe build active file", "command": "C:\msys64\mingw64\bin\g++.exe", "args": [ "-fdiagnostics-color=always", "-g", "${file}", "-o", "${fileDirname}\${fileBasenameNoExtension}.exe" ], "options": { "cwd": "${fileDirname}" }, "problemMatcher": [ "$gcc" ], "group": { "kind": "build", "isDefault": true }, "detail": "Task generated by Debugger." } ] }

Vinit-Pathak commented 11 months ago

Broo please reply....

jspw commented 11 months ago

@Vinit-Pathak sorry, can you know me in Facebook or Instagram or LinkedIn ? We can have a meet call then.

jspw commented 11 months ago

We have talked about the issue and make it work. So the issue was not in the config file. Let me clear a thing for new users of VS-Code, You need to open vs code in a folder and apply the configuration for work fine. If you just open the file in a vscode and try to run with Ctrl+Shft+B, it will not work though You have config it properly. Thanks @Vinit-Pathak hope this issue is resolved and I am colsing the issue.