-
-
Notifications
You must be signed in to change notification settings - Fork 10.7k
Add homebrew.code-workspace file
#21096
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,55 @@ | ||||||
| { | ||||||
| "folders": [ | ||||||
| { | ||||||
| "path": ".", | ||||||
| "name": "brew" | ||||||
| }, | ||||||
| { | ||||||
| "path": "Library/Taps/homebrew/homebrew-core", | ||||||
| "name": "homebrew-core" | ||||||
| }, | ||||||
| { | ||||||
| "path": "Library/Taps/homebrew/homebrew-cask", | ||||||
| "name": "homebrew-cask" | ||||||
| } | ||||||
| ], | ||||||
| "settings": { | ||||||
| "files.exclude": { | ||||||
| "Library/Taps": true, | ||||||
| // Exclude all files in bin except for brew | ||||||
| "bin/[^b]*": true, | ||||||
| "bin/b[^r]*": true, | ||||||
| "bin/br[^e]*": true, | ||||||
| "bin/bre[^w]*": true, | ||||||
| // brew aliases are in the form brew-* | ||||||
| "bin/brew-*": true, | ||||||
| }, | ||||||
| "rubyLsp.rubyVersionManager": { | ||||||
| "identifier": "custom" | ||||||
| }, | ||||||
| "rubyLsp.customRubyCommand": "source /opt/homebrew/.vscode/ruby-lsp-activate.sh", | ||||||
|
||||||
| "rubyLsp.customRubyCommand": "source /opt/homebrew/.vscode/ruby-lsp-activate.sh", | |
| "rubyLsp.customRubyCommand": "source ${workspaceFolder}/.vscode/ruby-lsp-activate.sh", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Worth noting: this needs to be an absolute path because it's executed relative to each individual folder, so the ../../ won't be correct for the taps
Rylan12 marked this conversation as resolved.
Show resolved
Hide resolved
Copilot
AI
Nov 17, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inconsistent indentation: this file primarily uses tabs for indentation (as seen throughout), but lines 5, 9, 13, 17-18, 25, and 53 use spaces. For consistency with the rest of the file, these lines should use tabs.
Uh oh!
There was an error while loading. Please reload this page.