diff options
-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 |