Obsidian Neighbouring Files

Quickly navigate between neighbouring files in Obsidian.

The Plugin GitHub: FabianUntermoser/obsidian-neighbouring-files-plugin | Install here

Examples

  • Navigate to the next weekly from 2023-W17 to 2023-W18
  • Navigate to the next daily from 2023-04-31 to 2023-05-01
  • Navigate to the next file from A4 to A5

I use Obsidian Vimrc with this configuration .obsidian.vimrc.

" navigation to neighbouring files
exmap next_file obcommand neighbouring-files:next
exmap prev_file obcommand neighbouring-files:prev
exmap next_file_alphabetical obcommand neighbouring-files:next-alphabetical
exmap prev_file_alphabetical obcommand neighbouring-files:prev-alphabetical
exmap next_file_created obcommand neighbouring-files:next-created
exmap prev_file_created obcommand neighbouring-files:prev-created
exmap next_file_modified obcommand neighbouring-files:next-modified
exmap prev_file_modified obcommand neighbouring-files:prev-modified
nmap gn :next_file<cr>
nmap gp :prev_file<cr>