I have a clipboard script, but it seems to have stopped working properly recently, and I am unsure why.

Code:
chancopy { 
  var %l = 1, %s = $line($active, 0)
  clipboard
  while (%l <= %s) { 
    clipboard -an $strip($line($active, %l))
    inc %l 
  }
}


It's randomly skipping lines.

Last edited by Mythos; 16/03/16 03:28 AM.