mirror of
https://github.com/kdheepak/taskwarrior-tui.git
synced 2025-08-25 17:57:19 +02:00
Merge pull request #143 from kdheepak/fix-shortcut-out-of-bounds
This commit is contained in:
commit
9fd5650377
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ impl Config {
|
|||
|
||||
fn get_uda_shortcuts() -> Vec<String> {
|
||||
let mut v = vec![];
|
||||
for s in 0..9 {
|
||||
for s in 0..=9 {
|
||||
let c = format!("uda.taskwarrior-tui.shortcuts.{}", s);
|
||||
let s = Self::get_config(&c);
|
||||
v.push(s);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue