Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 461 Bytes

README.md

File metadata and controls

13 lines (11 loc) · 461 Bytes

xdotool for Sublime Text

This is a Package Control dependency providing xdotool binary, a tool to fake keyboard/mouse input and perform window management on Linux, like AutoHotKey for Windows or Applescript for Mac. This is an example of using it

from xdotool import xdotool
wid = xdotool("search", "--onlyvisible", "--class", "rstudio")
xdotool("key", "--window", wid, "--clearmodifiers", "Return")