maralla / completor.vim

Async completion framework made ease.
MIT License
1.29k stars 63 forks source link

Add cwd option for job #186

Closed damnever closed 6 years ago

damnever commented 6 years ago

Or, make all options configurable?

damnever commented 6 years ago

The PR is made for this reason: job_start('cd /bin && ls', ...) is not working, and I think cwd option is better than job_start('sh -c "cd /bin && ls"', ...). @maralla

maralla commented 6 years ago

So what is the problem the changes solved for completor?

damnever commented 6 years ago

Async completion framework made ease.

damnever commented 6 years ago

I am writing a plugin based on completor.vim, and I also need to custom the env option. I think that making most of those options configurable is acceptable for the framework, anyway, I am currently using the sh -c style, so...