achiurizo / consular

Terminal automation
http://rdoc.info/github/achiu/consular/master/file/README.md
MIT License
813 stars 46 forks source link

Allow (background) commands started with "&" #65

Closed elia closed 13 years ago

elia commented 13 years ago

With the current && implementation of commands it isn't possible to start commands ending with "&".

With this patch the following is possible:

tab 'Log (test)', :settings => 'Ocean' do
  run 'mate . &', 
      'gitx &', 
      'tail -f log/test.log'
end

I obviously use of the final "&" to speed up the whole process but it's probably only one of its possible uses.

achiurizo commented 13 years ago

thanks for the fix, your changes have been pulled!