Results 71 comments of plredmond

> Is your editor adding a newline? It was modified by `cargo dev generate-all` afaik. My editor is vim and I didn't modify that file.

I've integrated this branch into my project and it works great. There doesn't seem to be a function in the `posix` package which can be used to implement `fuseDirectorySyncronise`, however,...

I'm also writing a passthru implementation and came to the same conclusion. Thanks for doing PR #12 @matil019!

`fuseRead`, `fuseFlush`, `fuseWrite` and `fuseRelease` all take an extraneous `FilePath` argument, which follows the [fuse api](https://libfuse.github.io/doxygen/structfuse__operations.html#a2a1c6b4ce1845de56863f8b7939501b5).. in the [example passthru fs, read](https://github.com/libfuse/libfuse/blob/master/example/passthrough.c#L307) uses the extra filepath for opening the file...

I encountered this same issue (inability to cleanly un-mount programmatically). The work-around that I came up with was to call `fusermount -u` on the value of the mountpoint argument. ```haskell...

At least in the current version, this works: ```haskell Just ref

@charliermarsh perhaps we could add this kind of explicit-conversion to the UP031 rule after we can infer the types of the expressions? alternatively, since we parse the format string we...

@zanieb I added this issue at your instruction, but I'm not sure that it's required any longer. I think the justification for only underlining the /binding/ that is unused, and...

Oops, didn't add clippy to my pre-push hook. Added now.