Visual Studio Code can’t find files inside vendor folder (Laravel project)

Fix 1. I am not sure how many projects you have but I think you can enable this by changing the excludefile settings. Go to VSCode > Preferences > Settings or press ⌘,. Search for files.exclude and make **/.git to false. Fix 2 OR try to search for search.useIgnoreFiles in your settings and make it … Read more

How to delete matching brackets in VS Code?

There is an extension called Bracketeer that does what you want. First, install with Ctrl–p, then ext install pustelto.bracketeer, followed by an enter. You can then add the following to your keybindings.json { “key”: “ctrl+alt+backspace”, “command”: “bracketeer.removeBrackets” }, You can then use ctrl–alt–backspace to remove matching brackets.