change how editor is launched for how i do my vimmmmmmmmm
This commit is contained in:
parent
22d35a2576
commit
7689c03176
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue