Sun, 06 Sep 2020 22:12:52 +0300
Don't auto-create directories that will be empty
3 | 1 | |
9
751216807683
Further lua5.3 compatibility fixes
Tuomo Valkonen <tuomov@iki.fi>
parents:
3
diff
changeset
|
2 | --@module plugin.breadcrumb |
3 | 3 | |
9
751216807683
Further lua5.3 compatibility fixes
Tuomo Valkonen <tuomov@iki.fi>
parents:
3
diff
changeset
|
4 | local plugin_breadcrumb={} |
3 | 5 | |
26
77cd7b8fb6a6
Rename path.lua mypath.lua not conflict with other lua path modules.
Tuomo Valkonen <tuomov@iki.fi>
parents:
9
diff
changeset
|
6 | local path=require("mypath") |
9
751216807683
Further lua5.3 compatibility fixes
Tuomo Valkonen <tuomov@iki.fi>
parents:
3
diff
changeset
|
7 | |
751216807683
Further lua5.3 compatibility fixes
Tuomo Valkonen <tuomov@iki.fi>
parents:
3
diff
changeset
|
8 | function plugin_breadcrumb.trail(env) |
3 | 9 | return "(TODO)" |
10 | end | |
9
751216807683
Further lua5.3 compatibility fixes
Tuomo Valkonen <tuomov@iki.fi>
parents:
3
diff
changeset
|
11 | |
751216807683
Further lua5.3 compatibility fixes
Tuomo Valkonen <tuomov@iki.fi>
parents:
3
diff
changeset
|
12 | return plugin_breadcrumb |