Add a dedicated action to open files (#22625)
Closes #22531 Closes #22250 Closes #15679 Release Notes: - Add `workspace::OpenFiles` action to enable opening individual files on Linux and Windows
This commit is contained in:
parent
36301442dd
commit
bbb473b8df
8 changed files with 95 additions and 38 deletions
|
@ -449,6 +449,10 @@ where
|
|||
);
|
||||
}
|
||||
|
||||
pub fn log_err<E: std::fmt::Debug>(error: &E) {
|
||||
log_error_with_caller(*Location::caller(), error, log::Level::Warn);
|
||||
}
|
||||
|
||||
pub trait TryFutureExt {
|
||||
fn log_err(self) -> LogErrorFuture<Self>
|
||||
where
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue