tangled
alpha
login
or
join now
ngp.computer
/
tsk
A file-based task manager
0
fork
atom
overview
issues
pulls
pipelines
CLIPPY
ngp.computer
1 year ago
c8ac941a
48441e03
+2
-1
2 changed files
expand all
collapse all
unified
split
src
util.rs
workspace.rs
+1
src/util.rs
···
13
.read(true)
14
.write(true)
15
.create(true)
0
16
.open(path)?;
17
Flock::lock(file, mode).map_err(|(_, errno)| Error::Lock(errno))
18
}
···
13
.read(true)
14
.write(true)
15
.create(true)
16
+
.truncate(false)
17
.open(path)?;
18
Flock::lock(file, mode).map_err(|(_, errno)| Error::Lock(errno))
19
}
+1
-1
src/workspace.rs
···
457
workspace: &'a Workspace,
458
}
459
460
-
impl<'a> Iterator for LazyTaskLoader<'a> {
461
type Item = SearchTask;
462
463
fn next(&mut self) -> Option<Self::Item> {
···
457
workspace: &'a Workspace,
458
}
459
460
+
impl Iterator for LazyTaskLoader<'_> {
461
type Item = SearchTask;
462
463
fn next(&mut self) -> Option<Self::Item> {