@crouton-kit/humanloop 0.3.19 → 0.3.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -329,6 +329,14 @@ export function reviewVimscript() {
329
329
  `" autocmd above reapplies our anchor highlights on top of gloam.`,
330
330
  `silent! colorscheme gloam`,
331
331
  ``,
332
+ `" Cursor visibility: -u NONE loads nvim's built-in guicursor, which forces a`,
333
+ `" steady-block DECSCUSR (ESC[2 q). Under tmux-256color no cursor COLOR is sent`,
334
+ `" (terminfo lacks Cs/Cr), so the block inherits the terminal's profile cursor`,
335
+ `" color — which renders invisibly in some terminals (e.g. iTerm2 on a dark`,
336
+ `" theme). Emptying guicursor tells nvim to stop managing cursor shape/color, so`,
337
+ `" the review shows the SAME native, visible cursor as a normal shell.`,
338
+ `set guicursor=`,
339
+ ``,
332
340
  `function! s:Setup() abort`,
333
341
  ` " Read-only guard so review never mutates the source doc.`,
334
342
  ` setlocal nomodifiable`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crouton-kit/humanloop",
3
- "version": "0.3.19",
3
+ "version": "0.3.20",
4
4
  "description": "Human-in-the-loop decision TUI — agents write questions, humans answer them",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",