Advertisement
Guest User

Untitled

a guest
Jan 8th, 2022
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $^c::
  2.     SendInput, ^c
  3.     KeyWait, c, T0.3
  4.     If(ErrorLevel){
  5.         KeyWait, c
  6.         return
  7.     }
  8.     KeyWait, c, D, T0.2
  9.     If(ErrorLevel){
  10.         KeyWait, c
  11.         return
  12.     }
  13.     ClipWait, 0
  14.     If(ErrorLevel){
  15.         s := ""
  16.     }else{
  17.         s := Clipboard
  18.     }
  19.     s := RegExReplace(s, "\s+", " ", -1)
  20.     ;s := RegExReplace(s, " -+", " ", -1)
  21.     StringLeft, s, s, 4000
  22.     Run, "C:\Program Files\Everything\Everything.exe" -search "%s%"
  23.     s =
  24. return
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement