<feed xmlns='http://www.w3.org/2005/Atom'>
<title>nvim-config/plugin/50-diff_orig.lua, branch dev</title>
<subtitle>Neovim configuration</subtitle>
<id>http://git.tvcloud.fr/nvim-config/atom/plugin/50-diff_orig.lua?h=dev</id>
<link rel='self' href='http://git.tvcloud.fr/nvim-config/atom/plugin/50-diff_orig.lua?h=dev'/>
<link rel='alternate' type='text/html' href='http://git.tvcloud.fr/nvim-config/'/>
<updated>2026-07-14T15:15:31Z</updated>
<entry>
<title>refactor: remove lua/dotfiles subfolder</title>
<updated>2026-07-14T15:15:31Z</updated>
<author>
<name>Thomas Vanbesien</name>
<email>tvanbesi@proton.me</email>
</author>
<published>2026-07-14T14:11:45Z</published>
<link rel='alternate' type='text/html' href='http://git.tvcloud.fr/nvim-config/commit/?id=a411f79725c92d7ef89484a87a239aa2e0bc5c98'/>
<id>urn:sha1:a411f79725c92d7ef89484a87a239aa2e0bc5c98</id>
<content type='text'>
</content>
</entry>
<entry>
<title>style(nvim): rewrap comments to satisfy the comment checker</title>
<updated>2026-07-11T13:18:00Z</updated>
<author>
<name>Thomas Vanbesien</name>
<email>tvanbesi@proton.me</email>
</author>
<published>2026-07-11T13:18:00Z</published>
<link rel='alternate' type='text/html' href='http://git.tvcloud.fr/nvim-config/commit/?id=eac1a9022da82aa052c299a057a84882bb4a5608'/>
<id>urn:sha1:eac1a9022da82aa052c299a057a84882bb4a5608</id>
<content type='text'>
Break comment lines after sentence-ending punctuation, give function
comments a period-terminated one-line summary, and wrap comment lines
to 100 columns.
Comments only, no behavior change.
</content>
</entry>
<entry>
<title>feat: group the cheatsheet by feature and scope commands to buffers</title>
<updated>2026-07-03T12:44:16Z</updated>
<author>
<name>Thomas Vanbesien</name>
<email>tvanbesi@proton.me</email>
</author>
<published>2026-07-03T12:44:16Z</published>
<link rel='alternate' type='text/html' href='http://git.tvcloud.fr/nvim-config/commit/?id=401b7585b4a27dd6e9d63e818b2505aedd082be0'/>
<id>urn:sha1:401b7585b4a27dd6e9d63e818b2505aedd082be0</id>
<content type='text'>
Break the single "Global" cheatsheet bucket into one section per
feature, and label buffer-local sections "&lt;feature&gt; (buffer-local)" so
each entry's scope is explicit. Drop the completion cursor-motion
entries.

Correct commands that were declared global but only act on the current
buffer, making them buffer-local:
- NotesRename and NotesRenameSection, created in init_notes_buffer.
- ClaudeBashHistory, ClaudeBashHistoryNext and ClaudeBashHistoryPrevious,
  created in the per-buffer init (set_monitor_keymaps renamed to
  init_monitor_buffer, which now sets commands too).
- MarkdownCheck and MarkdownUncheck, created from a new FileType
  markdown autocmd.

ClaudeBashMonitor stays global: it is the opener with session-name
completion and must be callable from any buffer.
</content>
</entry>
<entry>
<title>feat(help): declarative cheatsheet engine and floating window</title>
<updated>2026-07-03T11:34:46Z</updated>
<author>
<name>Thomas Vanbesien</name>
<email>tvanbesi@proton.me</email>
</author>
<published>2026-07-03T11:34:46Z</published>
<link rel='alternate' type='text/html' href='http://git.tvcloud.fr/nvim-config/commit/?id=79956264beb1d1dde959f164b011d4fc73d4916e'/>
<id>urn:sha1:79956264beb1d1dde959f164b011d4fc73d4916e</id>
<content type='text'>
Replace the treesitter source scan, ctags tagfile, and fzf-lua tag
picker with a `dotfiles.help` engine and a plain floating window.

The engine's `register(scope, spec)` records metadata only — it sets
no keymap or command — so a feature can declare its buffer-local maps
at load time and they are listed at startup regardless of what buffers
have been opened, and each entry carries a scope.

Features declare their user-facing maps and commands through
`help.register`; the float renders them grouped by scope, keymaps with
Vim's per-mode prefix and commands as `:Name`. `g?` and `:Cheatsheet`
open it; `q`, `&lt;Esc&gt;`, and `&lt;C-c&gt;` close it.
</content>
</entry>
<entry>
<title>fix(diff-orig): replace the width heuristic with a bang</title>
<updated>2026-07-02T15:04:21Z</updated>
<author>
<name>Thomas Vanbesien</name>
<email>tvanbesi@proton.me</email>
</author>
<published>2026-07-02T15:04:21Z</published>
<link rel='alternate' type='text/html' href='http://git.tvcloud.fr/nvim-config/commit/?id=e90034e2443a9a6f2fa3a6dcc57d3a2191767255'/>
<id>urn:sha1:e90034e2443a9a6f2fa3a6dcc57d3a2191767255</id>
<content type='text'>
:DiffOrig now always opens a regular split and :DiffOrig! a vertical
one.
The old width &gt;= textwidth * 2 check made every buffer with an unset
'textwidth' split vertically, however narrow the window.

Also fix the smaller quirks:

- Copy the file before diffthis,
  so a failed copy no longer leaves the window in diff mode.
- Re-running the command replaces the previous scratch
  instead of stacking another diff window.
- The scratch inherits the buffer's filetype,
  keeping syntax highlighting in the diff.
- Warn with a proper message on an unnamed buffer.
</content>
</entry>
<entry>
<title>refactor(diff-orig): move DiffOrig into its own plugin</title>
<updated>2026-07-02T15:04:09Z</updated>
<author>
<name>Thomas Vanbesien</name>
<email>tvanbesi@proton.me</email>
</author>
<published>2026-07-02T15:04:09Z</published>
<link rel='alternate' type='text/html' href='http://git.tvcloud.fr/nvim-config/commit/?id=3ef4ffd58e7ef7b9ad7808295af5677161c8afa3'/>
<id>urn:sha1:3ef4ffd58e7ef7b9ad7808295af5677161c8afa3</id>
<content type='text'>
Move the DiffOrig command and its function out of init.lua
into plugin/50-diff_orig.lua.
init.lua's Commands section is now empty, so drop it.
</content>
</entry>
</feed>
