我想function(){console.log(arguments)}
更換funcarg
焦炭它從來沒有工作,它總是與function()
不能逃脫autohotkeys
這是我的代碼替換funcarg
:
::funcarg::function(){console.log(arguments)}
我讀這本書,嘗試了很多不同的方法
https://autohotkey.com/docs/commands/_EscapeChar.htm
::funcarg::function()\{console.log(arguments)}
::funcarg::function()%{console.log(arguments)}
::funcarg::function()'{console.log(arguments)}
::funcarg::function()`{console.log(arguments)}
我喜歡'熱字串原始Mode'。謝謝 :) – Aminadav