Compare commits

..

1 Commits

Author SHA1 Message Date
John Bintz 7689c03176 change how editor is launched for how i do my vimmmmmmmmm 2012-09-10 10:51:15 -04:00
1 changed files with 7 additions and 2 deletions

View File

@ -37,8 +37,13 @@ module Qwandry
editor_and_options = editor.strip.split(/\s+/) editor_and_options = editor.strip.split(/\s+/)
# Launch the editor with its options and any paths that we have been passed # Launch the editor with its options and any paths that we have been passed
if File.directory?(paths.first)
Dir.chdir(paths.first) { system(*(editor_and_options)) }
else
system(*(editor_and_options + paths)) system(*(editor_and_options + paths))
end end
end
private private