{"id":48805735,"url":"https://github.com/kenfdev/nvim-feedbacks","last_synced_at":"2026-04-14T05:03:40.747Z","repository":{"id":334222890,"uuid":"1140563950","full_name":"kenfdev/nvim-feedbacks","owner":"kenfdev","description":null,"archived":false,"fork":false,"pushed_at":"2026-01-24T02:05:29.000Z","size":340,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-24T05:20:51.132Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kenfdev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-01-23T13:02:47.000Z","updated_at":"2026-01-24T02:05:32.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/kenfdev/nvim-feedbacks","commit_stats":null,"previous_names":["kenfdev/nvim-feedbacks"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/kenfdev/nvim-feedbacks","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kenfdev%2Fnvim-feedbacks","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kenfdev%2Fnvim-feedbacks/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kenfdev%2Fnvim-feedbacks/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kenfdev%2Fnvim-feedbacks/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kenfdev","download_url":"https://codeload.github.com/kenfdev/nvim-feedbacks/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kenfdev%2Fnvim-feedbacks/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31782743,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T02:24:21.117Z","status":"ssl_error","status_checked_at":"2026-04-14T02:24:20.627Z","response_time":153,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-04-14T05:03:01.054Z","updated_at":"2026-04-14T05:03:40.741Z","avatar_url":"https://github.com/kenfdev.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# nvim-feedbacks\n\nA neovim plugin for adding inline feedback/annotations to code lines that persist to markdown files.\n\n## Overview\n\nnvim-feedbacks allows you to add comments/feedback to specific lines in your code. When invoked, a floating window appears where you can write your feedback. The feedback is then appended to a markdown file stored in a `.feedback` directory. Lines with feedback display a sign icon, and you can view, cycle through, and delete feedbacks from within neovim.\n\n## Requirements\n\n- Neovim \u003e= 0.9\n\n## Installation\n\nUsing [lazy.nvim](https://github.com/folke/lazy.nvim):\n\n```lua\n{\n  'kenfdev/nvim-feedbacks',\n  config = function()\n    require('feedbacks').setup()\n  end,\n}\n```\n\n## Commands\n\n| Command | Description |\n|---------|-------------|\n| `:FeedbackAdd` | Add feedback to current line (or visual selection) |\n| `:FeedbackEdit` | Edit feedback on current line in floating window |\n| `:FeedbackToggleSigns` | Toggle sign icons for all feedbacks in current buffer |\n| `:FeedbackOpenFile` | Open the current review file for direct editing |\n| `:FeedbackArchiveFile` | Move current review file to `.feedback/archive/` |\n\n## Default Keybindings\n\nAll keybindings use `\u003cleader\u003ef` prefix:\n\n| Keybinding | Command | Description |\n|------------|---------|-------------|\n| `\u003cleader\u003efa` | `:FeedbackAdd` | Add feedback |\n| `\u003cleader\u003efe` | `:FeedbackEdit` | Edit feedback |\n| `\u003cleader\u003efs` | `:FeedbackToggleSigns` | Toggle signs |\n| `\u003cleader\u003efo` | `:FeedbackOpenFile` | Open review file |\n| `\u003cleader\u003efx` | `:FeedbackArchiveFile` | Archive current file |\n\nKeybindings can be disabled via setup configuration.\n\n## Configuration\n\n```lua\nrequire('feedbacks').setup({\n  -- Sign column icon (emoji or text)\n  sign_icon = '💬',\n\n  -- Default keybindings (set to false to disable)\n  keymaps = {\n    add = '\u003cleader\u003efa',\n    edit = '\u003cleader\u003efe',\n    toggle = '\u003cleader\u003efs',\n    open = '\u003cleader\u003efo',\n    archive = '\u003cleader\u003efx',\n  },\n\n  -- Feedback directory name (relative to project root)\n  feedback_dir = '.feedback',\n\n  -- Archive subdirectory name\n  archive_dir = 'archive',\n})\n```\n\n## Floating Window Keybindings\n\n### Add Window (when adding feedback)\n\n| Key | Action |\n|-----|--------|\n| `\u003cC-CR\u003e` | Submit feedback and close |\n| `\u003cEsc\u003e` | Cancel and close without saving |\n\n### View Window (when viewing feedback)\n\n| Key | Action |\n|-----|--------|\n| `\u003cTab\u003e` | Next feedback (if multiple on same line) |\n| `\u003cS-Tab\u003e` | Previous feedback |\n| `d` | Delete feedback (with confirmation) |\n| `\u003cEsc\u003e` | Close window |\n\n## File Structure\n\n### Feedback Directory\n\n- Location: `.feedback/` directory in the nearest git project root\n- If no git project found: `.feedback/` in the current working directory\n- Created silently on first feedback if it doesn't exist\n\n### Review Files\n\n- **Format**: Markdown (`.md`)\n- **Naming**: ISO date format: `YYYY-MM-DD.md` (e.g., `2024-01-15.md`)\n- **Active file**: Defaults to today's date; remembered within session if manually switched\n\n### Feedback Entry Format\n\nEach feedback entry uses a heading for the reference and content below:\n\n```markdown\n## README.md L3\nThis function needs error handling\n\n## src/main.lua L15-L20\nConsider extracting this into\na separate module for reusability\n\n## lib/utils.lua L42\nTODO: Add unit tests for edge cases\n```\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkenfdev%2Fnvim-feedbacks","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkenfdev%2Fnvim-feedbacks","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkenfdev%2Fnvim-feedbacks/lists"}