我想為我的 Visual Studio 添加一個快捷方式或插件,以將固定文字新增到遊標所在的位置。例如:這是我目前的 cs 檔案:
public void foo(){
int x = 4 ;
**cursor Position**
}
當快捷方式或插件觸發時,程式碼將是:
public void foo(){
int x = 4 ;
'my fixed text'
}
謝謝
答案1
我會推薦自動熱鍵為了這。只需將其保存為 .ahk 文件,它就會按預期工作:
c::
SendInput, The text you need pasted
Return