k0ccc178 downloadsAdd marginal (sidebar) comments to selected text in your notes. (google doc vibe)
An Obsidian plugin for adding marginal (sidebar) comments to selected text in your notes (google doc vibe).

| Setting | Description | Default |
|---|---|---|
| Highlight color | Color of highlighted text (with color picker and opacity slider) | rgba(255, 213, 79, 0.3) |
| Show marker | Show a comment marker icon at the end of highlighted text | true |
| Select text on navigate | Select the highlighted text when navigating to a comment | true |
| Open sidebar on add | Automatically open the sidebar when adding a comment | true |
main.js, manifest.json, and styles.css from the latest releaseVaultFolder/.obsidian/plugins/side-thing/# Install dependencies
npm install
# Start development build with watch mode
npm run dev
# Production build
npm run build
# Lint
npm run lint
data.json, keyed by file pathViewPlugin with DecorationSetItemView registered in the right sidebarModal styled as a floating popoversrc/
main.ts # Plugin lifecycle, command/view registration
settings.ts # Settings interface and settings tab UI
types.ts # SideComment and CommentsStore interfaces
store.ts # Comment storage (loadData/saveData wrapper)
i18n.ts # Localization (English / Russian)
editor/
extension.ts # CodeMirror 6 ViewPlugin for highlighting
ui/
comment-popover.ts # Floating popover for create/edit comment
sidebar-view.ts # Sidebar ItemView with comment list
commands/
register.ts # Command and context menu registration
isDesktopOnly: false)0-BSD