Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. [
  2. { "keys": ["ctrl+shift+c"], "command": "copy_path" },
  3. //chrome
  4. { "keys": ["f1"], "command": "side_bar_files_open_with",
  5. "args": {
  6. "paths": [],
  7. "application": "C://Program Files (x86)//Google//Chrome//Application//chrome.exe",
  8. "extensions":".*" //匹配任何文件类型
  9. }
  10. },
  11. //360
  12. { "keys": ["f2"], "command": "side_bar_files_open_with",
  13. "args": {
  14. "paths": [],
  15. "application": "C:\\Users\\Administrator\\AppData\\Roaming\\360se6\\Application\\360se.exe",
  16. "extensions":".*" //匹配任何文件类型
  17. }
  18. },
  19. //ie
  20. { "keys": ["f3"], "command": "side_bar_files_open_with",
  21. "args": {
  22. "paths": [],
  23. "application": "C:\\Program Files (x86)\\Internet Explorer\\iexplore.exe",
  24. "extensions":".*" //匹配任何文件类型
  25. }
  26. },
  27. // firefox
  28. { "keys": ["f4"], "command": "side_bar_files_open_with",
  29. "args": {
  30. "paths": [],
  31. "application": "D:\\Program Files\\Mozilla Firefox\\firefox.exe",
  32. "extensions":".*" //匹配任何文件类型
  33. }
  34. }
  35. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement