Get Selected Text Without Using the Clipboard

后端 未结 2 935
感动是毒
感动是毒 2021-01-02 23:52

I am trying to create a pretty basic text wrapper in AutoHotKey for use when programming. I got it to work using the clipboard to copy the selected text, modify it, then pas

2条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-03 00:23

    Your "clipboard manager" will most probably work with ctrl+c. Add the $ option, so it won't get triggered by your alt+r-hotkey, thus not intervened.

    $^c::
         ....
    

提交回复
热议问题