summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-01-20 03:16:30 +0100
committerhut <hut@lavabit.com>2010-01-20 03:16:30 +0100
commit845bd407b461138abbdc890bd8e9043b0236b46f (patch)
treec824eec1ea0d5e9f5a67ce5acaffe16cb91ad7ea
parentba3c477b4144943ceb1bd07cf316828e9e742a4d (diff)
downloadranger-845bd407b461138abbdc890bd8e9043b0236b46f.tar.gz
apps: added a few application definitions
-rw-r--r--ranger/defaults/apps.py58
1 files changed, 56 insertions, 2 deletions
diff --git a/ranger/defaults/apps.py b/ranger/defaults/apps.py
index 62866cb6..0bb1c5cb 100644
--- a/ranger/defaults/apps.py
+++ b/ranger/defaults/apps.py
@@ -12,15 +12,27 @@
 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 
+from re import compile, VERBOSE
 from ranger.applications import *
 
+INTERPRETED_LANGUAGES = compile(r'''
+	^(text|application)\/x-(
+		haskell|perl|python|ruby|sh
+	)$''', VERBOSE)
+
 class CustomApplications(Applications):
 	def app_default(self, c):
 		"""How to determine the default application?"""
 		f = c.file
 
-		if f.extension is not None and f.extension in ('pdf'):
-			return self.app_apvlv(c)
+		if f.extension is not None:
+			if f.extension in ('pdf'):
+				return self.app_apvlv(c)
+			if f.extension in ('swc', 'smc'):
+				return self.app_zsnes(c)
+
+		if INTERPRETED_LANGUAGES.match(f.mimetype):
+			return self.app_edit_or_run(c)
 
 		if f.container:
 			return self.app_aunpack(c)
@@ -45,6 +57,11 @@ class CustomApplications(Applications):
 
 	app_editor = app_vim
 
+	def app_edit_or_run(self, c):
+		if c.mode is 1:
+			return self.app_self(c)
+		return self.app_editor(c)
+
 	def app_mplayer(self, c):
 		if c.mode is 1:
 			return tup('mplayer', *c)
@@ -81,3 +98,40 @@ class CustomApplications(Applications):
 	def app_apvlv(self, c):
 		c.flags += 'd'
 		return tup('apvlv', *c)
+
+	def app_make(self, c):
+		if c.mode is 0:
+			return tup("make")
+		if c.mode is 1:
+			return tup("make", "install")
+		if c.mode is 2:
+			return tup("make", "clear")
+	
+	def app_firefox(self, c):
+		return tup("firefox")
+
+	def app_javac(self, c):
+		return tup("javac", *c)
+	
+	def app_java(self, c):
+		def strip_extensions(file):
+			if '.' in file.basename:
+				return file.path[:file.path.index('.')]
+			return file.path
+		files_without_extensions = map(strip_extensions, c.files)
+		return tup("java", files_without_extensions)
+	
+	def app_zsnes(self, c):
+		return tup("zsnes", c.file)
+	
+	def app_evince(self, c):
+		return tup("evince", *c)
+	
+	def app_wine(self, c):
+		return tup("wine", c.file)
+
+	def app_totem(self, c):
+		if c.mode is 0:
+			return tup("totem", "--fullscreen", *c)
+		if c.mode is 1:
+			return tup("totem", *c)
>224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294