about summary refs log tree commit diff stats
path: root/data/apps.rb
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2009-07-28 00:25:51 +0200
committerhut <hut@lavabit.com>2009-07-28 00:25:51 +0200
commitec5c0b09f6dfa2c2640ced1c0a59054a4a04bab1 (patch)
treee1eace7e26cbc4191d49c30b6ed8a7b7176fd6c0 /data/apps.rb
parent70fd0c7963ad6c3e9fc3f80012fbc8a3c87154fc (diff)
downloadranger-ec5c0b09f6dfa2c2640ced1c0a59054a4a04bab1.tar.gz
in apps.rb: comment out extra commands for vim
Diffstat (limited to 'data/apps.rb')
-rw-r--r--data/apps.rb11
1 files changed, 6 insertions, 5 deletions
diff --git a/data/apps.rb b/data/apps.rb
index 74effd44..e8d5923a 100644
--- a/data/apps.rb
+++ b/data/apps.rb
@@ -97,11 +97,12 @@ module Application
 	def vi(files)
 		files.dont_run_in_background
 
-		commands = [
-			'map h ZZ',
-			'map q h',
-			'map H :unmap h<CR>:unmap H<CR>:unmap q<CR>',
-		].map {|x| "+'#{x}'"}.join(' ')
+		commands = ""
+#		commands = [
+#			'map h ZZ',
+#			'map q h',
+#			'map H :unmap h<CR>:unmap H<CR>:unmap q<CR>',
+#		].map {|x| "+'#{x}'"}.join(' ')
 
 		"vi #{commands} -- #{files}"
 	end