比如访达里打开一个文件夹,然后按个 f10 之类 然后用 vscode 打开这个文件夹.
1
Aliencn 2022-04-26 11:37:32 +08:00
我是用 [自动操作] 设置了一个快捷方式,选中文件夹右键菜单里就能用 vs code 打开
|
2
duxiansen 2022-04-26 11:41:31 +08:00
可以按住 command ,把 vscode 放到访达上面的工具栏里,然后把文件夹拖到上面就行了
|
3
hteen 2022-04-26 11:47:57 +08:00
vscode 安装 code 命令到 PATH, 终端就可以直接 code /data/ 打开文件夹了
|
4
idlerlestat 2022-04-26 12:02:59 +08:00
alfred 里面可以有类似的 workflow
|
5
weichengwu 2022-04-26 12:04:39 +08:00
|
6
goldenlove 2022-04-26 12:12:37 +08:00 2
刚用 Hammerspoon 试了下,体验还不错……
Hammerspoon 介绍: https://petertuo.notion.site/Hammerspoon-de51be4267b04728bf50c9df11128aa8 参考脚本: 我测试的快捷键是 cmd + t ,可按需修改: [code] function open_vscode() local stat, path = hs.applescript('tell application "Finder" to get POSIX path of (insertion location as string)') local command = "open -a \"Visual Studio Code\" " .. path local result = hs.execute(command) if path ~= nil then hs.alert.show(string.format("VSCode 成功打开...%q", path)) end end hs.hotkey.bind({"cmd"}, 't', open_vscode) [/code] |
7
c1273082756 2022-04-26 12:26:20 +08:00
utools
|
8
longgediyi999 2022-04-26 13:38:21 +08:00
alfred code 空格 xxxxx
|
10
inhzus 2022-04-26 13:46:30 +08:00 via iPhone
shell 内:code .
finder 内:将 vscode 放在左侧快捷访问栏,然后把文件夹拖到快捷访问内的 vscode 就可以打开了 |
11
whusnoopy 2022-04-26 14:19:04 +08:00 3
https://sspai.com/post/70331
参考此文,按住 Cmd 把 VSCode 图标拖入 Finder 工具栏,未来在 Finder 里直接把目录拖到工具栏的 VSCode 图标上,就能用 VSCode 打开此文件夹或文件 |
12
klarkzh 2022-04-26 14:26:09 +08:00 via iPhone
不建议软件的话 openinterminal
|
13
gogocome OP 撸了个 karabiner 的:
``` { "description": "Open current dir in VsCode", "manipulators": [ { "conditions": [ { "bundle_identifiers": [ "^com.apple.finder" ], "type": "frontmost_application_if" } ], "from": { "key_code": "r", "modifiers": { "mandatory": [ "left_command" ] } }, "to": [ { "shell_command": "osascript -e '\ntell application \"Finder\"\n if exists Finder window 1 then\n set currentFolder to target of Finder window 1 as alias\n else\n return\n end if\nend tell\ntell application \"Visual Studio Code\" to open currentFolder\n'" } ], "type": "basic" } ] }, ``` |
14
FawkesV 2022-04-26 17:06:23 +08:00
utools 设置全局快捷键
|
15
neptuno 2022-04-26 17:31:39 +08:00
我用的 qspace ,可以设置快捷启动,鼠标选择某个文件夹,点击一个按钮就能用特定 app 打开了
|
16
imtianx 2022-04-26 17:34:34 +08:00
看到上面有说 alfread 的 workflow ,我用的是 sublime 打开文件查看,具体的 workflow:
on alfred_script(q) set finderPath to "" tell application "Finder" try set finderFolder to (folder of the front window as alias) on error set finderFolder to (path to home folder as alias) end try set finderPath to quoted form of POSIX path of finderFolder do shell script "/Applications/Sublime' 'Text.app/Contents/SharedSupport/bin/subl " & finderPath end tell end alfred_script |
17
ivan_wl 2022-04-26 20:59:44 +08:00
@neptuno 我用的 qmenu ,可以像 windows 下一样右键 - open in vscode 了,这个软件和 qspace 是一个作者
|
18
he15hiss 2022-04-26 21:09:25 +08:00 via iPhone
直接拖到 vscode 不是挺快吗
|
19
Yien 2022-04-27 03:58:09 +08:00
SwityMenu 好像可以
|
20
lx000377 2022-04-27 08:53:24 +08:00 1
|
21
swordfairy 2022-04-27 13:15:49 +08:00
可以试试 ‘ 超级右键 ’ 这个软件试试, 可以配置打开各种 ide 的软件,包括拷贝文件绝对路径之类的,我个人感觉挺方便的,ps: 使用新版需要付费
|
22
vaccer 2022-04-28 11:31:25 +08:00 via iPhone
1.找到自动操作(小机器人), 点击新建文稿或 cmd + n, 选择快速操作.
2.工作流程收到当前 文件或文件夹 位于 访达.app 3.在左侧面板选择 实用工具, 然后找到 运行 Shell 脚本, 拽到右侧面板里. 4. 传递输入: 作为自变量 for f in "$@" do open -a "Visual Studio code" "$f" done 5.保存 6. 键盘->快捷键->服务->文件和文件夹->vscode , 设置快捷键 f10 |
23
ChengLuffy 2022-04-28 11:37:49 +08:00 via iPhone
OpenInTermimal 可以右键用 vs code 打开,不过由于工作大量使用命令行,我还是习惯 cd /dir; code .
|