Skip to content

Commit 0c9672a

Browse files
committed
Update Tidy docs
1 parent 3d6250a commit 0c9672a

File tree

2 files changed

+21
-13
lines changed

2 files changed

+21
-13
lines changed

np.Tidy/README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This plugin provides commands to help tidy up your notes:
44

55
- **/File root-level notes** (alias "frnl"): For each root-level note, asks which folder you'd like it moved to, including the option of creating a new folder. (There's a setting for ones to permanently ignore.)
6-
- **/Generate @repeats in recent notes** (alias "grrn"): Generates any needed new @repeat() lines in all recently-changed notes. This is only useful for people using the extended @repeat() syntax of the separate [Repeat Extensions plugin](https://github.com/NotePlan/plugins/blob/main/jgclark.RepeatExtensions/README.md). This means you don't have to add the special trigger on every relevant note: instead you can include this command in your Daily Note template, or run it manually every day or two.
6+
- **/Generate @repeats in recent notes** (alias "grrn"): Generates any needed new @repeat() lines in all recently-changed notes. This is only useful for people using the extended @repeat() syntax of the separate [Repeat Extensions plugin](https://github.com/NotePlan/plugins/blob/main/jgclark.RepeatExtensions/README.md). This means you don't have to add the special trigger on every relevant note: instead you can include this command in your Daily Note template, or run it manually every day or two. Please see [extra details below](#details-on-generate-repeats-in-recent-notes).
77
- **/List conflicted notes** (alias "conflicts"): creates/updates a note that lists all your notes on your current device with file-level conflicts, along with summary details about them. It gives options to delete one or other of the conflicted versions, or to open them side-by-side for easier comparison.
88
![](conflicted-notes-v0.13.0.png)
99
(See more details below.)
@@ -30,6 +30,11 @@ There's also the **/Tidy Up** (alias "tua"), which runs as many of the other com
3030

3131
[<img width="150px" alt="Buy Me A Coffee" src="https://www.buymeacoffee.com/assets/img/guidelines/download-assets-sm-2.svg" />](https://www.buymeacoffee.com/revjgc)
3232

33+
### Details on /Generate @repeats in recent notes
34+
This command works around a limitation of my separate [Repeat Extensions plugin](https://github.com/NotePlan/plugins/blob/main/jgclark.RepeatExtensions/README.md), because the NotePlan API doesn't fire a change trigger when a task is completed from a search result list or from the Reference area.
35+
36+
This command catches any such completed repeats that haven't had the next repeat generated from them. It will work on all notes changed over the number of days you set the 'recently changed' setting to be.
37+
3338
### Details on /List conflicted notes
3439
Important notes:
3540
- Conflicted notes can appear on each device you run NotePlan on, and the conflicted copies do not sync. Therefore you should consider running this on each of your devices. Each device gets its own list of conflicted notes

np.Tidy/plugin.json

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,21 @@
250250
}
251251
],
252252
"plugin.settings": [
253+
{
254+
"type": "heading",
255+
"title": "Recently changed notes"
256+
},
257+
{
258+
"title": "How many days count as recent?",
259+
"key": "numDays",
260+
"type": "number",
261+
"description": "The number of days to look back for 'recently changed' notes in many of the commands in this plugin. If this is 0 or empty, then all notes will be checked.",
262+
"default": 7,
263+
"required": false
264+
},
265+
{
266+
"type": "separator"
267+
},
253268
{
254269
"type": "heading",
255270
"title": "'/File root-level notes' command settings"
@@ -324,18 +339,6 @@
324339
{
325340
"type": "separator"
326341
},
327-
{
328-
"type": "heading",
329-
"title": "'/Remove ... from recent ...' command settings"
330-
},
331-
{
332-
"title": "How many days count as recent?",
333-
"key": "numDays",
334-
"type": "number",
335-
"description": "The number of days to look back for 'recently changed' notes. If this is 0 or empty, then all notes will be checked.",
336-
"default": 7,
337-
"required": false
338-
},
339342
{
340343
"key": "removeFoldersToExclude",
341344
"title": "Folders to exclude",

0 commit comments

Comments
 (0)