首先確保 你的mac中有已解鎖workflow 的 alfredgit
輸入 字段名,字段類型,子彈說明。就能夠自動生成相應代碼段。github
例子:在alfred搜索欄中輸入 bean createTime,s,建立時間(bean:熱鍵,createTime:字段名(s表明字段類型爲字符串類型),建立時間:字段註釋) 按回車就能出書以下代碼:ui
/** * 建立時間 */ private _createTime: string; /** * 建立時間 */ public get createTime(): string { return this._createTime; } /** * 建立時間 */ public set createTime(value: string) { this._createTime = value; }
https://github.com/tanzhihui1...
給個小星星哦this