-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #372 from imdone/1.37.0
1.37.0
- Loading branch information
Showing
7 changed files
with
124 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
89 changes: 89 additions & 0 deletions
89
test/repos/move-meta-order-keep-empty-priority/.imdone/config.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
keepEmptyPriority: true | ||
code: | ||
include_lists: | ||
- TODO | ||
- DOING | ||
- DONE | ||
- PLANNING | ||
- FIXME | ||
- ARCHIVE | ||
- HACK | ||
- CHANGED | ||
- XXX | ||
- IDEA | ||
- NOTE | ||
- REVIEW | ||
lists: | ||
- hidden: false | ||
name: NOTE | ||
- hidden: false | ||
name: TODO | ||
- hidden: false | ||
name: DOING | ||
- hidden: false | ||
ignore: true | ||
name: DONE | ||
settings: | ||
journalType: Folder | ||
journalPath: content | ||
newCardSyntax: HASH_META_ORDER | ||
cards: | ||
maxLines: 6 | ||
addNewCardsToTop: true | ||
colors: [] | ||
metaNewLine: true | ||
computed: | ||
date: "${(new Date()).toDateString()}" | ||
time: "${(new Date()).toLocaleTimeString()}" | ||
timestamp: "${(new Date()).toISOString()}" | ||
sourceLink: "[${source.path}:${line}](${source.path}:${line})" | ||
dueEmoji: !<tag:yaml.org,2002:js/function> |- | ||
function anonymous( | ||
) { | ||
const due = this.totals["What's Due?"] | ||
let emoji = ':2nd_place_medal:' | ||
if (due >= 3) { | ||
emoji = ':fire:' | ||
} else if (due === 0) { | ||
emoji = ':rocket:' | ||
} | ||
return `<span style="font-size: 1.5em;">${emoji}</span>` | ||
} | ||
recentEmoji: !<tag:yaml.org,2002:js/function> |- | ||
function anonymous( | ||
) { | ||
const recentlyCompleted = this.totals["Recently Completed"] | ||
let emoji = ':2nd_place_medal:' | ||
if (recentlyCompleted >= 3) { | ||
emoji = ':rocket:' | ||
} else if (recentlyCompleted === 0) { | ||
emoji = ':fire:' | ||
} | ||
return `<span style="font-size: 1.5em;">${emoji}</span>` | ||
} | ||
wipEmoji: !<tag:yaml.org,2002:js/function> |- | ||
function anonymous( | ||
) { | ||
const doing = this.totals["DOING"] | ||
let emoji = ':2nd_place_medal:' | ||
if (doing >= 3) { | ||
emoji = ':fire:' | ||
} else if (doing === 0) { | ||
emoji = ':sleeping:' | ||
} else if (doing === 1) { | ||
emoji = ':rocket:' | ||
} | ||
return `<span style="font-size: 1.5em;">${emoji}</span>` | ||
} | ||
doneList: DONE | ||
defaultList: TODO | ||
taskPrefix: "- [ ]" | ||
addCheckBoxTasks: true | ||
filteredLists: [] | ||
journalTemplate: "" | ||
openIn: code | ||
editorTheme: blackboard | ||
replaceSpacesWith: "-" | ||
appendNewCardsTo: "" | ||
theme: dark | ||
useVimKeyBindings: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#DOING Task a | ||
#TODO Task b | ||
#TODO Task c | ||
#TODO Task d | ||
#TODO Task e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters