Obsidian Neighbouring Files
Quickly navigate between neighbouring files in Obsidian.
Neighbouring Files - Obsidian Plugin | Install here GitHub: FabianUntermoser/obsidian-neighbouring-files-plugin
Examples
- Navigate to the next weekly note, e.g.
2023-W17→2023-W18 - Navigate to the next daily note, e.g.
2023-04-31→2023-05-01 - Navigate to the next numbered note, e.g.
A4→A5 - Move through the files of a project folder
Navigating with shortcuts
Navigating with the mobile floating action button
Configuration
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 older_file_created obcommand neighbouring-files:older-created
exmap newer_file_created obcommand neighbouring-files:newer-created
exmap older_file_modified obcommand neighbouring-files:older-modified
exmap newer_file_modified obcommand neighbouring-files:newer-modified
exmap folder_up obcommand neighbouring-files:folder-up
exmap folder_down obcommand neighbouring-files:folder-down
exmap folder_next obcommand neighbouring-files:folder-next
exmap folder_prev obcommand neighbouring-files:folder-prev
nmap gn :next_file<cr>
nmap gp :prev_file<cr>
nmap fu :folder_up<cr>
nmap fd :folder_down<cr>
nmap fn :folder_next<cr>
nmap fp :folder_prev<cr>