Sublime Text - Recommended method for setting browser shortcut keys

Sublime Text - Recommended method for setting browser shortcut keys

It is common to view code effects in different browsers, so using different shortcut keys to open the corresponding browser can greatly improve work efficiency.

Here is a simple method with only two steps:

1. Install the SideBarEnhancements plugin

Open Package Control and find SideBarEnhancements to quickly install it (no Package Control?)

ctrl+shift+P Go to Package Control: install Package Find SideBarEnhancements and select it

2. Set shortcut keys

JavaScript CodeCopy content to clipboard
  1. {
  2.          "keys" : [ "f1" ],
  3.          "command" : "side_bar_files_open_with" , "args" : { "application" : "D:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe" , "extensions" : ".*" , "paths" : []}
  4. },
  5. {
  6.          "keys" : [ "f2" ],
  7.          "command" : "side_bar_files_open_with" , "args" : { "application" : "C:\\Users\\delll\\AppData\\Local\\Google\\Chrome\\Application\\chrome.exe" , "extensions" : ".*" , "paths" : []}
  8. },
  9. {
  10.          "keys" : [ "f3" ],
  11.          "command" : "side_bar_files_open_with" , "args" : { "application" : "C:\\Program Files\\Internet Explorer\\iexplore.exe" , "extensions" : ".*" , "paths" : []}
  12. },
  13. {
  14.          "keys" : [ "f4" ],
  15.          "command" : "side_bar_files_open_with" , "args" : { "application" : "C:\\Program Files (x86)\\360\\360safe\\360AppLoader.exe" , "extensions" : ".*" , "paths" : []}
  16. }

Open Key Binding-user, copy the above code, then modify it to your browser path and restart sublime.

How can I see the path when the desktop is full of shortcut icons? Select the icon and right-click - the properties are as follows, remember to change / to \\ .

It can be completed in 2 steps. Set the speed if it is not set!

The above is all the content of the editor's recommendation for Sublime Text—setting browser shortcut keys. I hope everyone will support 123WORDPRESS.COM~

Original URL: http://www.cnblogs.com/easy-blue/archive/2016/06/25/5616686.html

<<:  CSS uses position + margin to achieve the method of horizontal and vertical centering of fixed boxes

>>:  Detailed explanation of MySQL high availability architecture

Recommend

A brief discussion on why daemon off is used when running nginx in docker

I'm very happy. When encountering this proble...

How to use css variables in JS

How to use css variables in JS Use the :export ke...

Solution to the docker command exception "permission denied"

In Linux system, newly install docker and enter t...

Detailed explanation of monitoring Jenkins process based on zabbix

1. Monitoring architecture diagram 2. Implementat...

Understanding the Lazy Loading Attribute Pattern in JavaScript

Traditionally, developers create properties in Ja...

Solve the problem of running jupyter notebook on the server

Table of contents The server runs jupyter noteboo...

Use JS to zoom in and out when you put the mouse on the image

Use JS to zoom in and out when the mouse is on th...

jQuery plugin to implement stacked menu

A jQuery plugin every day - stacked menu, for you...

Use Nginx to build a streaming media server to realize live broadcast function

Written in front In recent years, the live stream...

How to quickly build your own server detailed tutorial (Java environment)

1. Purchase of Server 1. I chose Alibaba Cloud...

How to implement responsive layout in vue-cli

When we are doing front-end development, we will ...

vue2.x configuration from vue.config.js to project optimization

Table of contents Preface vue.config.js configura...