I do web development and am trying out Sublime Text 2. Is there a keyboard shortcut to open the current file in Chrome?

Any help to get setup in Sublime Text for web development is appreciated!

link|improve this question

80% accept rate
feedback

3 Answers

up vote 6 down vote accepted

I'm not really sure this question is approprate here, but you can add a new "Build System" under Tools -> Build System -> New Build System...

As with all configuration in Sublime Text its just JSON, so it should be pretty straight forward. The main thing you are going to want to configure is the "cmd" key/val. Here is the build config for launching chrome on my mac.

{
    "cmd": ["open", "-a", "Google Chrome", "$file"]
}

Save that as Chrome.sublime-build, relaunch Sublime Text and you should see a new Chome option in the build list. Select it, and then you should be able to launch chrome with Cmd-B on a mac (or whatever hotkey you have configured for build, maybe its F7 or Ctrl-B on a windows machine, I cant remember)

At least this should give you a push in the right direction.

Edit:

Another thing I end up doing a lot in sublime text 2 is if you right click inside a document, one of the items in the context menu is Copy File Path, which puts the current file's full path into the clipboard for easy pasting into whatever browser you want.

link|improve this answer
Thanks! This helps immensely. – wwwuser Nov 5 '11 at 23:15
5  
For Window OS, use this cmd: { "cmd": ["PATH_TO_YOUR_CHROME", "$file"] } – didxga Mar 10 at 13:44
feedback

Windows7 FireFox/Chrome:

    {
       "cmd":["F:\\Program Files\\Mozilla Firefox\\firefox.exe","$file"]
    }

just use your own path of firefox.exe or chrome.exe to replace mine.

用你自己的firefox.exe或chrome.exe替换掉我的路径即可。

link|improve this answer
feedback

In Windows, you can also use the command "explorer $file" to open the file with its default program. So far I have not seen any drawbacks from using this, except that one might have set the default program for html files to another text editor, or to Sublime Text.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.