box icon indicating copy to clipboard operation
box copied to clipboard

import & skip statements combined leads to multiple repeated image edits

Open erikh opened this issue 8 years ago • 0 comments

file1:

from "alpine"
skip do
  run "ls"
end

file2:

import "file1"

This will result in two layer editing series both editing in the same layers (we don't track multiple skip statements independently, the skipped layers are just kept in a list for editing at the end of the run).

This is painfully slow.

erikh avatar Apr 28 '17 15:04 erikh