Richard Schneeman
Richard Schneeman
I checked manually (it didn't occur to me earlier, sorry for the question spam). The answer for everyone else is: No, it's not checked. I opened an issue against clippy...
We should use urls like this (i'm thinking) ``` https://github.com/codetriage/docs_doctor/blob/f5dd91595d5cdad0a2348515c6f715ef19c51070/app/models/github_url_from_base_path_line.rb#L10 ``` So it's base ``` https://github.com/codetriage/docs_doctor/blob ``` then commit sha ``` f5dd91595d5cdad0a2348515c6f715ef19c51070 ``` Then page and line ``` /app/models/github_url_from_base_path_line.rb#L10 ```
I found out the answer (maybe). Maintainers, please feel free to close. Let me know if this is the right way to install. Leaving as a note to others: ##...
> I'm guessing this is why obsidian will block you from making a file that starts with a period. That was my guess as well. It makes sense. I'm also...
Thanks for the plugin, your work, and reviewing my issue. Other files take a long time but eventually successfully complete. I tried it on user_errors successfully (in the log I...
To add to my deprecation section: I feel that the interface with `get_current_dir` conflicts with `get_envs`: - `Command::get_current_dir` - `None` means "was not set, fallback" - `Command::get_envs` - `None` means...
> what is the internal representation currently? Is it a single collection for both or multiple collections This is the internal struct: https://github.com/rust-lang/rust/blob/e10eab5956f91c26dcc5ae29a19cfcd747047e4d/library/std/src/sys_common/process.rs#L14-L18. It's a single collection that stores env...
I'm unsure of what happens next in this process so I made a reference implementation for "[sketch] Expose envs via a new method on Command" its at https://github.com/rust-lang/rust/pull/110327. I would...
> Note that talking about inherited values only makes limited sense because those are only snapshotted at process creation time and may be changed before or after via set_env. Conceptually...
Thanks a ton for the feedback. I misunderstood your original comment. Special thanks to this comment: > trying to reassemble that state from different parts within the parent. I realized...