-
Notifications
You must be signed in to change notification settings - Fork 283
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
Add missing editor/folder specific title vars #1093
Conversation
I also refactored nested structure of the |
|
||
let dirty = | ||
Option.map(Core.Buffer.isModified, buffer) | ||
|> ( |
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.
I like the way you refactored out the withTag
method and pipe into fun
here - nice! 👍
|> Option.map(Filename.dirname) | ||
|> Option.bind(fp => | ||
switch (rootPath) { | ||
| Some((_, base)) => Some(Path.toRelative(~base, fp)) |
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.
Looks like the CI was failing because it expected ~base
to be a named parameter. I made that quick change - 🤞 it passes now.
@bryphe Should i re-run checks manually? |
@amiralies - sorry about that, indeed the failure looks unrelated - kicking off another run |
/azp run |
Phew, build is green - thank you for the contribution, @amiralies ! |
See #880