Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a54a3002e2 | |||
| 389533bbbb | |||
| 92e911c25e | |||
| 70e3aa519b | |||
| 9edd8724c8 |
@@ -10,6 +10,8 @@
|
|||||||
- [Pathogen](#installation-using-pathogen)
|
- [Pathogen](#installation-using-pathogen)
|
||||||
- [Vim-Plug](#installation-using-vim-plug)
|
- [Vim-Plug](#installation-using-vim-plug)
|
||||||
- [Vundle](#installation-using-vundle)
|
- [Vundle](#installation-using-vundle)
|
||||||
|
- [Lazy](#installation-using-lazy)
|
||||||
|
|
||||||
- [Basic Markup](#basic-markup)
|
- [Basic Markup](#basic-markup)
|
||||||
- [Lists](#lists)
|
- [Lists](#lists)
|
||||||
- [Key Bindings](#key-bindings)
|
- [Key Bindings](#key-bindings)
|
||||||
@@ -142,6 +144,26 @@ vim +PluginInstall +qall
|
|||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### Installation using [Lazy](https://github.com/folke/lazy.nvim)
|
||||||
|
|
||||||
|
Add repository within `require('lazy').setup` call in your vimrc (or for plugins file ie. /lua/plugins/, do the same within a `return{}` statement).
|
||||||
|
|
||||||
|
If you are unfamiliar with lua, note that the brackets `{`, `}` need a closing comma (`},`) if you are adding this to an existing function like the .setup call.
|
||||||
|
|
||||||
|
``` { 'vimwiki/vimwiki' } ```
|
||||||
|
|
||||||
|
**Example with options (Change syntax to markdown)**:
|
||||||
|
|
||||||
|
``` lua
|
||||||
|
{
|
||||||
|
'vimwiki/vimwiki',
|
||||||
|
init = function()
|
||||||
|
vim.g.vimwiki_path = '~/vimwiki/'
|
||||||
|
vim.g.vimwiki_syntax = 'markdown'
|
||||||
|
vim.g.vimwiki_ext = 'md'
|
||||||
|
end,
|
||||||
|
}
|
||||||
|
```
|
||||||
#### Manual Install
|
#### Manual Install
|
||||||
|
|
||||||
Download the [zip archive](https://github.com/vimwiki/vimwiki/archive/dev.zip)
|
Download the [zip archive](https://github.com/vimwiki/vimwiki/archive/dev.zip)
|
||||||
|
|||||||
@@ -47,6 +47,13 @@ function! vimwiki#tags#update_tags(full_rebuild, all_files) abort
|
|||||||
let wiki_base_dir = vimwiki#vars#get_wikilocal('path')
|
let wiki_base_dir = vimwiki#vars#get_wikilocal('path')
|
||||||
let tags_file_last_modification = getftime(vimwiki#tags#metadata_file_path())
|
let tags_file_last_modification = getftime(vimwiki#tags#metadata_file_path())
|
||||||
let metadata = s:load_tags_metadata()
|
let metadata = s:load_tags_metadata()
|
||||||
|
" Remove stale entries for files no longer on disk
|
||||||
|
let l:ext = vimwiki#vars#get_wikilocal('ext')
|
||||||
|
for pagename in keys(metadata)
|
||||||
|
if !filereadable(wiki_base_dir . pagename . l:ext)
|
||||||
|
call remove(metadata, pagename)
|
||||||
|
endif
|
||||||
|
endfor
|
||||||
for file in files
|
for file in files
|
||||||
if all_files || getftime(file) >= tags_file_last_modification
|
if all_files || getftime(file) >= tags_file_last_modification
|
||||||
let subdir = vimwiki#base#subdir(wiki_base_dir, file)
|
let subdir = vimwiki#base#subdir(wiki_base_dir, file)
|
||||||
|
|||||||
@@ -980,6 +980,7 @@ Vimwiki file.
|
|||||||
*:VimwikiRebuildTags*
|
*:VimwikiRebuildTags*
|
||||||
Rebuilds the tags metadata file for all wiki files newer than the metadata
|
Rebuilds the tags metadata file for all wiki files newer than the metadata
|
||||||
file.
|
file.
|
||||||
|
Stale entries for files that have been deleted or moved are removed automatically.
|
||||||
Necessary for all tags related commands: |vimwiki-syntax-tags|.
|
Necessary for all tags related commands: |vimwiki-syntax-tags|.
|
||||||
|
|
||||||
:VimwikiRebuildTags! does the same for all files.
|
:VimwikiRebuildTags! does the same for all files.
|
||||||
@@ -4019,6 +4020,7 @@ Contributors and their Github usernames in roughly chronological order:
|
|||||||
- @jiamingc
|
- @jiamingc
|
||||||
- Alex Claman (@claman)
|
- Alex Claman (@claman)
|
||||||
- @qadzek
|
- @qadzek
|
||||||
|
- Nathan Giard (@giardn)
|
||||||
|
|
||||||
|
|
||||||
==============================================================================
|
==============================================================================
|
||||||
@@ -4038,6 +4040,13 @@ master is retained as a legacy mirror of the dev branch.
|
|||||||
This is somewhat experimental, and will probably be refined over time.
|
This is somewhat experimental, and will probably be refined over time.
|
||||||
|
|
||||||
|
|
||||||
|
2026.04.08~
|
||||||
|
|
||||||
|
Fixed:~
|
||||||
|
* Issue #795: VimwikiRebuildTags now removes stale entries for files
|
||||||
|
that have been deleted or moved
|
||||||
|
|
||||||
|
|
||||||
2024.01.24~
|
2024.01.24~
|
||||||
|
|
||||||
New:~
|
New:~
|
||||||
|
|||||||
Reference in New Issue
Block a user