AHK62|VS Code開發AutoHotkey操作技巧#2-IntelliSense、Quick Help與Action Buttons工具欄

AHK62|VS Code開發AutoHotkey操作技巧#2-IntelliSense、Quick Help與Action Buttons工具欄

簡睿學堂
1 影片觀看·2024年3月7日

介紹VS Code對於AutoHotkey開發的操作技巧:

══════════ ⌚ Timeline ══════════
00:00 開場白
00:27 IntelliSense / 快速資訊
02:49 Quick Help / 快速說明
06:53 自訂工具欄(使用Action Buttons Ext)
08:30 Ending / 結語
══════════ ⌚ Timeline ══════════

▼ settings.json相關內容

"actionButtons": {
"reloadButton": "♻️", /* Custom reload button text */
"defaultColor": "#ff0034", /* Can also use string color names */
"loadNpmCommands": false, /* Disables automatic generation of actions for npm commands */
"commands": [
{
//"cwd": "c:/util/AutoGUI", /* Terminal initial folder */
"name": "🕵️Spy",
"color": "light-green",
"singleInstance": true,
"command": "\"C:/Program Files/AutoHotkey/v2/AutoHotkey64.exe\" \"C:/Program Files/AutoHotkey/UX/WindowSpy.ahk\"",
},
{
"name": "🎯Dash",
"color": "light-green",
"singleInstance": true,
"command": "\"C:/Program Files/AutoHotkey/v2/AutoHotkey64.exe\" \"C:/Program Files/AutoHotkey/UX/ui-dash.ahk\"",
},
{
"name": "🏃‍♂️Ahk2Exe",
"color": "light-green",
"singleInstance": true,
"command": "\"C:/Program Files/AutoHotkey/v2/AutoHotkey64.exe\" \"C:/Program Files/AutoHotkey/UX/Ahk2Exe.ahk\"",
},
{
"name": "🎨AutoGUI",
"color": "light-green",
"singleInstance": true,
"command": "c:/util/AHK/Easy-auto-GUI/Launch_AutoGUI.exe",
},
{
"name": "🪟Split editor",
"color": "orange",
"useVsCodeApi": true,
"command": "workbench.action.splitEditor"
},
/*{
// example for esp-idf oriented command
"name": "Flash",
"terminalName": "ESP-IDF 4.4 CMD",
"color": "red",
"useVsCodeApi": false,
"ignoreCwd": true,
"ignoreClear": true,
"command": "idf.py -p ${port} flash",
"extraCommands": [
"idf.py -p ${port} monitor"
]
}*/ ],
"customVars": {
"port": "COM4" /* Can be used in command as `${port}`*/
}
},


💡 解說文章: https://jdev.tw/blog/8356/
💡 相關鏈接
✅ VS Code下載:https://code.visualstudio.com/download
✅ AutoHotkey下載:https://www.autohotkey.com/download/
✅ VSCode擴充 Action Buttons Ext: https://marketplace.visualstudio.com/items?itemName=jkearins.action-buttons-ext
✅ Easy-Auto-GUI-for-AHK-v2: https://github.com/samfisherirl/Easy-Auto-GUI-for-AHK-v2
✅ 如果你覺得我的VS Code樣式有點吸睛的話,請參考我的影片:[Peacock:五彩繽紛的vs-code擴充](https://youtu.be/uubmhF-lDi8)