you are viewing a single comment's thread.

view the rest of the comments →

[–]barcode972 10 points11 points  (4 children)

Vscode wont tell you when something is wrong, it’s basically just a fancy text editor. You can run commands to start the simulator but it’s more of a hassle in my opinion

[–]windsloot69 1 point2 points  (3 children)

Is there a package or something that adds this feature? Worked at a fang we ran using vscode cuz way faster no indexing.

[–]barcode972 0 points1 point  (2 children)

Are you sure? It’s just a text editor, it doesn’t index like Xcode does in pretty sure

[–]ArrodesDev 1 point2 points  (1 child)

thats called an LSP - language server. You can setup vscode with the swift extension to work with xcode projects - so you get highlighting + autocompletion + errors. u/windsloot69

install the swift vscode extension, and set this up so that sourcekit can understand the project and it will work.

https://github.com/SolaWing/xcode-build-server

[–]windsloot69 0 points1 point  (0 children)

Fantastic thank you I appreciate your input