Last active
March 8, 2022 07:09
-
-
Save hoangnamitc/1d9c3ff423512245a331939c544d3301 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Mở Automator | |
- Tạo mới "Service" (Quick Action) | |
- Thêm một action "Run Shell Script" | |
- Mục Workflow receives current bạn chọn: "files or folders" in "Finder.app" | |
- Mục Run Shell Script: | |
+ Shell chọn: /bin/bash | |
+ Pass input chọn: as arguments | |
+ nội dung nhập: | |
for f in "$@"; do | |
open -a 'Visual Studio Code' "$f" | |
done | |
- Lưu với tên: Open in vsCode |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment