diff options
author | hut <hut@lavabit.com> | 2009-07-28 00:25:51 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2009-07-28 00:25:51 +0200 |
commit | ec5c0b09f6dfa2c2640ced1c0a59054a4a04bab1 (patch) | |
tree | e1eace7e26cbc4191d49c30b6ed8a7b7176fd6c0 /data/apps.rb | |
parent | 70fd0c7963ad6c3e9fc3f80012fbc8a3c87154fc (diff) | |
download | ranger-ec5c0b09f6dfa2c2640ced1c0a59054a4a04bab1.tar.gz |
in apps.rb: comment out extra commands for vim
Diffstat (limited to 'data/apps.rb')
-rw-r--r-- | data/apps.rb | 11 |
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 |