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

Detailed analysis of MySQL master-slave delay phenomenon and principle

1. Phenomenon In the early morning, an index was ...

Understanding and application scenarios of enumeration types in TypeScript

Table of contents 1. What is 2. Use Numeric Enume...

How to install and use Server-U 14 version

Introducing Server-U software Server-U is a very ...

A brief analysis of the best way to deal with forgotten MySQL 8 passwords

Preface Readers who are familiar with MySQL may f...

Recommend 60 paging cases and good practices

<br />Structure and hierarchy reduce complex...

Details after setting the iframe's src to about:blank

After setting the iframe's src to 'about:b...

A brief discussion on the role of Vue3 defineComponent

Table of contents defineComponent overload functi...

Summary of basic usage of $ symbol in Linux

Linux version: CentOS 7 [root@azfdbdfsdf230lqdg1b...

MySQL 8.0.24 installation and configuration method graphic tutorial

This article shares the installation tutorial of ...

Vue+video.js implements video playlist

This article shares the specific code of vue+vide...

MySQL paging query optimization techniques

In applications with paging queries, queries that...

Detailed explanation of mysql exists and not exists examples

Detailed explanation of mysql exists and not exis...

Teach you how to monitor Tomcat's JVM memory through JConsoler

Table of contents 1. How to monitor Tomcat 2. Jav...