Files
nuwiki/known-issues.md
T
gffranco 255e24d1e0
CI / cargo fmt --check (push) Successful in 17s
CI / cargo clippy (push) Successful in 30s
CI / cargo test (push) Successful in 40s
CI / editor keymaps (push) Successful in 1m25s
docs(known-issues): make it the single source of truth
Promote known-issues.md to the authoritative divergence reference ahead
of retiring development/vimwiki-gap.md:
- drop the pointer into vimwiki-gap.md so the file stands alone
- reframe the intro as the single source of truth
- add an "Internal deferrals (non-parity)" section capturing the
  cold-path optimizations (RSS render_entry_body disk read,
  push_level_edit_for_line offset scan, diary neighbor scan) that
  otherwise only lived in the gap doc, so nothing is lost on deletion

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-03 14:27:00 +00:00

6.8 KiB

Known Issues & Divergences from vimwiki

nuwiki is an LSP-backed reimplementation of vimwiki, not a fork of the original VimL plugin. It targets behavioral parity with vimwiki, but a handful of upstream options and behaviors are implemented differently — or intentionally not at all — because of that architecture.

This page is the single source of truth for how nuwiki differs from vimwiki. Everything here is either a deliberate design choice or a tracked future task; none of it is an accidental bug.

If you hit a behavior that isn't listed here and doesn't match vimwiki, please file it — that's a real bug.


Deferred (planned, not yet implemented)

These are genuine feature gaps that we intend to close, grouped because they ship together.

Markdown generated-content

The buffer-side generators — TOC (:VimwikiTOC), generated links (:VimwikiGenerateLinks), the tags index (:VimwikiGenerateTagLinks), and the diary index — always emit vimwiki markup (= Heading =), regardless of the wiki's syntax. Markdown wikis therefore get vimwiki-syntax generated sections.

Dependent on markdown-syntax generation, and deferred until it lands:

  • markdown-style heading generation in those generators (# Heading).
  • markdown_header_style — blank lines after a generated markdown header (no markdown header exists to attach it to yet).
  • markdown_link_ext — append the file extension in generated markdown links.

Hand-authored markdown content renders fine; only the generated sections are affected.


Behavioral divergences (by design)

These upstream options have no nuwiki equivalent, because the LSP server provides the capability a different way. They will not be re-implemented as-is.

Highlighting & display

vimwiki option nuwiki behavior
maxhi Broken/existence-based link highlighting is provided by LSP diagnostics instead (severity is configurable via diagnostic.link_severity).
conceallevel, conceal_onechar_markers, other conceal* Replaced by LSP semantic tokens; there is no conceal layer to configure.

Syntax detection

vimwiki option nuwiki behavior
nested_syntaxes / automatic_nested_syntaxes Code-fence languages are auto-detected from the fence tag (```python); always on, no toggle.
ext2syntax Syntax is chosen by file extension / the per-wiki syntax key automatically.
global_ext The configured wiki extension(s) always map to the vimwiki filetype regardless of location; there is no per-wiki "only inside the root" toggle (effectively always on).
syntax default name nuwiki defaults the per-wiki syntax to vimwiki where upstream defaults to default — a naming difference only, not behavioral.

Configuration mechanism

vimwiki option nuwiki behavior
folding (string) Replaced by folding = 'lsp' | 'expr' | 'off', backed by the LSP foldingRange provider.
key_mappings (dict) Replaced by the Lua mappings.<group> table and the g:nuwiki_no_<group>_mappings globals.

Tags

vimwiki option nuwiki behavior
auto_tags Upstream maintains an on-disk tag metadata file on save. nuwiki has no such file: the server re-indexes tags on every change, so tag search / jump / completion are always fresh. The configurable on-save piece (regenerating the in-buffer links section) is auto_generate_tags.

Mappings

vimwiki option nuwiki behavior
Mouse maps (<2-LeftMouse>, <MiddleMouse>, …) Upstream binds these unconditionally; nuwiki ships them opt-in via mappings.mouse / g:nuwiki_mouse_mappings.

Value-semantics differences

vimwiki option nuwiki behavior
list_margin (negative) Upstream resolves a negative value to the buffer's 'shiftwidth'. The server can't observe 'shiftwidth', so negative values collapse to zero leading indent on generated bullets. Set a non-negative number for a fixed indent.
diary_caption_level = -1 Accepted (the field is deserializable), but clamps to 0. nuwiki builds the diary index tree from dates, so upstream's -1 = "no per-page captions" semantic doesn't apply.

Vim/Win shims & syntax internals (not applicable)

CJK_length, listing_hl*, schemes_*, w32_dir_enc, menu, rx_todo, tag_format — these are syntax internals, menu definitions, or Vim/Windows shims with no role in an LSP-backed implementation.


Default-location differences

Where you don't set a path explicitly, nuwiki derives a different default location than upstream — by design, so each wiki is root-relative and self-contained. You can set any of these explicitly to match upstream exactly.

Key nuwiki default upstream default
html_path <root>/_html sibling <wikidir>_html/
template_path <root>/_templates global ~/vimwiki/templates/
diary_rel_path diary diary/ (trailing slash only — paths join identically, so behavior matches)

Internal deferrals (non-parity)

These are not vimwiki differences — they're known low-priority optimizations on cold code paths, recorded so they aren't rediscovered as "bugs." All are correct as-is; the deferral is a deliberate risk/reward call.

  • RSS render_entry_body reads from disk. It re-reads and re-parses each diary entry from disk rather than reusing an open buffer. This is the correct source of truth for an export artifact — switching to unsaved buffer text would change semantics, not just performance.
  • push_level_edit_for_line scans from offset 0. The list-level change (gl/gL) computes each line's start offset by scanning from the document start. It's an interactive single-keypress path over small inputs, and the offset-arithmetic rewrite carries more regression risk than the saved time is worth.
  • Diary next/prev neighbor scan. :VimwikiDiaryNextDay / PrevDay rebuild and sort the entry list to find one neighbor. Same reasoning — cold path, small input.

Notes

  • Third-party plugin compatibility. A shim at autoload/vimwiki/vars.vim exposes the subset of vimwiki#vars#get_wikilocal that plugins like vimwiki-sync and vim-zettel call (path, ext/extension, syntax, is_temporary_wiki), resolved from nuwiki's own config — including the correct per-wiki values in a multi-wiki setup. Add keys there if a plugin you use needs more.
  • Additive commands. nuwiki adds some commands with no upstream equivalent (e.g. :NuwikiFindOrphans). These are additions, not divergences.