rerun icon indicating copy to clipboard operation
rerun copied to clipboard

Input keypresses are duplicated after 200-800ms on OS X 10.8.2

Open lilith opened this issue 12 years ago • 4 comments

Typing @me will product @@meme or @m@mee or something similar.

Makes debugging with 'debugger' impossible.

using rerun (0.7.1)

lilith avatar Nov 16 '12 17:11 lilith

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.

alexch avatar Nov 17 '12 02:11 alexch

Workaround: use new --background (-b) option when debugging.

alexch avatar Jan 31 '13 15:01 alexch

@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)

cj avatar Jan 16 '15 18:01 cj

@alexch thanks so much for the workaround. this was driving me crazy.

spinlock99 avatar Feb 24 '15 21:02 spinlock99