rerun
rerun copied to clipboard
Input keypresses are duplicated after 200-800ms on OS X 10.8.2
Typing @me will product @@meme or @m@mee or something similar.
Makes debugging with 'debugger' impossible.
using rerun (0.7.1)
Confirmed. I should note that the keypresses are only duplicated on the output stream; the input appears to be correct (one character per key gets in to the console app). So debugging is entirely possible, just annoying.
Workaround: use new --background
(-b
) option when debugging.
@alexch doing background: false
doesn't seem to be working.
options = {
cmd: args.join(' '),
signal: 'TERM',
background: false,
growl: false,
name: 'Roda Server',
ignore: [],
dir: ["."],
pattern: "{Gemfile,Gemfile.lock,.gems,.bundle,.env*,config.ru,Rakefile,**/*.{rb,js,coffee,css,scss,sass,styl,erb,html,haml,ru,yml,slim,md,mab,rake}}"
}
Rerun::Runner.keep_running(options[:cmd], options)
@alexch thanks so much for the workaround. this was driving me crazy.