reopen icon indicating copy to clipboard operation
reopen copied to clipboard

freopen functionality for golang's io.Writers

Results 2 reopen issues
Sort by recently updated
recently updated
newest added

This adds a method to FileWriter to expose the underlying file's Fd() method.

Need something like this from https://github.com/golang/glog/blob/master/glog.go ```go // flushSyncWriter is the interface satisfied by logging destinations. type flushSyncWriter interface { Flush() error Sync() error io.Writer } ```