From da41543455beaa03cd5bbb28b9b69edbc28892b8 Mon Sep 17 00:00:00 2001 From: qadzek <84473512+qadzek@users.noreply.github.com> Date: Mon, 16 Dec 2024 14:05:01 +0100 Subject: [PATCH] Remove mention of incorrect filename If the `wiki.vim` configuration consists solely of `let g:wiki_root = '~/wiki'`, hitting `ww` actually opens `index.md` instead of `index.wiki`. This behavior changes when `let g:wiki_filetypes = [ 'wiki' ]` is added to the configuration. In the similar section in `:help wiki-intro-usage` no filename is mentioned, so I've updated `README.md` accordingly. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0909cee..0d407a1 100644 --- a/README.md +++ b/README.md @@ -52,8 +52,8 @@ This outlines the basic steps to get started: let g:wiki_root = '~/wiki' ``` -3. Now you can open the index file (by default `index.wiki`) with `ww` - and start to add your notes as desired. +3. Now you can open the index file with `ww` and start to add your notes + as desired. Please also read the `Guide` section in the [documentation](doc/wiki.txt).