Skip to content

Instantly share code, notes, and snippets.

View johngunerli's full-sized avatar

john johngunerli

View GitHub Profile
@johngunerli
johngunerli / vscode-macos-context-menu.md
Created April 15, 2022 11:09 — forked from idleberg/vscode-macos-context-menu.md
“Open in Visual Studio Code” in macOS context-menu

Open in Visual Studio Code

  • Open Automator
  • Quick Action
  • Set “Service receives selected” to files or folders in any application
  • Add a Run Shell Script action
  • Set the script action to the following
    for f in "$@"; do
    

open -a 'Visual Studio Code' "$@"

@johngunerli
johngunerli / .gitignore
Created February 14, 2022 13:24 — forked from GhostofGoes/.gitignore
Basic .gitignore template for Python projects
# Editors
.vscode/
.idea/
# Vagrant
.vagrant/
# Mac/OSX
.DS_Store