about summary refs log tree commit diff
path: root/sublime/.config/sublime-text-3/Packages/User/SideBarEnhancements
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2018-10-01 00:51:07 -0400
committerBen Harris <ben@tilde.team>2018-10-01 00:51:07 -0400
commitdb4a4fa9b74f49615aea0fd5f08c2322e1188a4a (patch)
treec57758c4138ea96f0825b6463b6b4a7d8ef012ed /sublime/.config/sublime-text-3/Packages/User/SideBarEnhancements
parent54ed1fc2973e0314a1756256ed7626684c349b98 (diff)
import sublime and vscode settings
Diffstat (limited to 'sublime/.config/sublime-text-3/Packages/User/SideBarEnhancements')
-rwxr-xr-xsublime/.config/sublime-text-3/Packages/User/SideBarEnhancements/Open With/Side Bar.sublime-menu56
1 files changed, 56 insertions, 0 deletions
diff --git a/sublime/.config/sublime-text-3/Packages/User/SideBarEnhancements/Open With/Side Bar.sublime-menu b/sublime/.config/sublime-text-3/Packages/User/SideBarEnhancements/Open With/Side Bar.sublime-menu
new file mode 100755
index 0000000..150dd08
--- /dev/null
+++ b/sublime/.config/sublime-text-3/Packages/User/SideBarEnhancements/Open With/Side Bar.sublime-menu
@@ -0,0 +1,56 @@
+[
+	{"id": "side-bar-files-open-with",
+		"children":
+		[
+
+			//application 1
+			{
+				"caption": "Photoshop",
+				"id": "side-bar-files-open-with-photoshop",
+
+				"command": "side_bar_files_open_with",
+				"args": {
+									"paths": [],
+									"application": "Adobe Photoshop CS5.app", // OSX
+									"extensions":"psd|png|jpg|jpeg",  //any file with these extensions
+									"args":[]
+								},
+				"open_automatically" : false // will close the view/tab and launch the application
+			},
+
+			//separator
+			{"caption":"-"},
+
+			//application 2
+			{
+				"caption": "SeaMonkey",
+				"id": "side-bar-files-open-with-seamonkey",
+
+				"command": "side_bar_files_open_with",
+				"args": {
+									"paths": [],
+									"application": "C:\\Archivos de programa\\SeaMonkey\\seamonkey.exe", // WINNT
+									"extensions":"", //open all even folders
+									"args":[]
+								},
+				"open_automatically" : false // will close the view/tab and launch the application
+			},
+			//application n
+			{
+				"caption": "Chrome",
+				"id": "side-bar-files-open-with-chrome",
+
+				"command": "side_bar_files_open_with",
+				"args": {
+									"paths": [],
+									"application": "C:\\Documents and Settings\\tito\\local\\Datos de programa\\Google\\Chrome\\Application\\chrome.exe",
+									"extensions":".*", //any file with extension
+									"args":[]
+						},
+				"open_automatically" : false // will close the view/tab and launch the application
+			},
+
+			{"caption":"-"}
+		]
+	}
+]
\ No newline at end of file