-
-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hm: option for default linking method #182
base: master
Are you sure you want to change the base?
Conversation
Can confirm there are no diffs in my home path when running this branch versus the main branch |
I've been using this PR for about a week now and everything is working great on my end. Thank you both for your work on this PR and project :) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks a lot for your work on this! Looks great! Just some minor comments.
specially by some programs that may e.g. generate | ||
errors/warnings, or replace them. | ||
|
||
This can be overrided on a per entry basis. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This can be overrided on a per entry basis. | |
This can be overridden on a per entry basis. |
getDirMethod = v: v.method or "bindfs"; | ||
isBindfs = v: (getDirMethod v) == "bindfs"; | ||
isSymlink = v: (getDirMethod v) == "symlink"; | ||
getDirPath = v: v.directory; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since you're removing all the other accessors, maybe this one should go, too?
Hi all!
Here's a (slightly late) follow up to #99.
This adds an option that allows users to change the default linking method.
Bindfs has been bothering me with the performance hits, and writing
method = symlink
for every entry is cumbersome. The default still is bindfs, so no breaking changes.To make this implementation cleaner, I also refactored the directory type to use coercedTo (in its own commit, to be easier to review).