No description
Find a file
2022-09-20 19:41:15 -05:00
.github/workflows Add release workflow 2022-02-12 20:19:13 -06:00
src Play nice with Sliding Panes plugin 2022-09-20 19:41:15 -05:00
.editorconfig Initial commit 2022-01-13 12:15:15 -06:00
.eslintignore Initial commit 2022-01-13 12:15:15 -06:00
.eslintrc Initial commit 2022-01-13 12:15:15 -06:00
.gitignore Initial commit 2022-01-13 12:15:15 -06:00
.prettierrc.json Add Prettier and revert to previous formatting 2022-03-27 13:30:37 -05:00
babel.config.js Added some tests 2022-02-06 16:01:36 -06:00
esbuild.config.mjs Initial commit 2022-01-13 12:15:15 -06:00
LICENSE Add MIT license 2022-02-12 20:13:14 -06:00
main.ts Organizing the code a bit 2022-02-05 17:14:28 -06:00
manifest.json Play nice with Sliding Panes plugin 2022-09-20 19:41:15 -05:00
package.json Add Prettier and revert to previous formatting 2022-03-27 13:30:37 -05:00
README.md Update images 2022-02-17 20:16:17 -06:00
styles.css Play nice with Sliding Panes plugin 2022-09-20 19:41:15 -05:00
tsconfig.json Initial commit 2022-01-13 12:15:15 -06:00
versions.json Initial commit 2022-01-13 12:15:15 -06:00
yarn.lock Add Prettier and revert to previous formatting 2022-03-27 13:30:37 -05:00

Obsidian Path Title

Show the path of the current file next to its name.

Usage

After you install, you'll get the behavior shown above, where the full path will shown before the file name. There is one basic option to change the appearance:

Path Font Size: Defaults to Medium, which is slightly smaller than the file name font. Set it to Large to make it the same size as the file name font or Small to make it even smaller.

Advanced Usage

The path replacement settings allow you to shorten or otherwise modify the path however you want. You can add multiple replacement settings, and they will all run in order from first to last.

Exact Path Replacement

You can replace an exact match of the whole path with an alternate path. For example, here we replace "Notes/Ideas" with "💡".

Exact Folder Replacement

You can replace an exact match of one folder in the path with an alternate folder. For example, here we replace "Notes" with "📝" and "Ideas" with "💡".

Text Replacement

You can replace text anywhere in the path with alternate text. For example, here we replace "001." with "1.".

Regular Expression Replacement

You can use a regular expression to match text anywhere in the path and replace it with alternate text, using $1, $2, etc. to insert groups matched by the regular expression. This allows you to change multiple paths with a single rule.