Is it possible to ALWAYS keep the cursor active in the text editor while using Browser Refresh with Sublime Text 3?

47 views Asked by At

I'm using Browser Refresh with Sublime Text 3 on Windows. Every time I save, Google Chrome refreshes. This behavior is correct. However, when it does this, it activates the Chrome window even though I have "activate" set to false. This makes it so that I always have to click back into Sublime Text to make more edits, slowing down my workflow.

Here's what's in my sublime-keymap (Key Bindings - User):

[
{
  "keys": ["ctrl+s"], "command": "browser_refresh", "args": {
    "auto_save": true,
    "delay": 0.5, 
    "activate": false,
    "browsers" : ["chrome"]
  }
}
]
0

There are 0 answers