{"id":51654981,"url":"https://github.com/allisonhere/anote","last_synced_at":"2026-07-14T08:30:59.674Z","repository":{"id":344585725,"uuid":"1179285234","full_name":"allisonhere/anote","owner":"allisonhere","description":"TUI based quick notes","archived":false,"fork":false,"pushed_at":"2026-07-06T00:51:54.000Z","size":264610,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-07-06T02:15:09.017Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","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/allisonhere.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":null,"dco":null,"cla":null}},"created_at":"2026-03-11T21:59:54.000Z","updated_at":"2026-07-06T00:51:58.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/allisonhere/anote","commit_stats":null,"previous_names":["allisonhere/anote"],"tags_count":18,"template":false,"template_full_name":null,"purl":"pkg:github/allisonhere/anote","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/allisonhere%2Fanote","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/allisonhere%2Fanote/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/allisonhere%2Fanote/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/allisonhere%2Fanote/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/allisonhere","download_url":"https://codeload.github.com/allisonhere/anote/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/allisonhere%2Fanote/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35453842,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-14T02:00:06.603Z","response_time":114,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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-07-14T08:30:59.599Z","updated_at":"2026-07-14T08:30:59.669Z","avatar_url":"https://github.com/allisonhere.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# anote\n\nKeyboard-first TUI note-taking app in Rust.\n\n![anote screenshot](./screenshot.png)\n\n## Features\n\n- SQLite-backed notes with FTS5 full-text search\n- Markdown preview with syntax highlighting in code blocks\n- Inline spell/grammar linting (harper-core) with one-key fixes\n- In-note find with live match highlighting and two-phase navigation\n- Folders, tags, pin, archive\n- Vim and default keymaps\n- Three themes: neo-noir, paper, matrix\n- Collapsible notes pane with scrollable preview\n- Soft-delete trash and quick note switcher\n- Quoted file paths in TUI import/export, search snippets, tag browser\n- Tag browser can create tags and assign persistent custom colors\n- Bulk note actions, empty-trash command, preview search highlighting\n- Command palette (`:`), quick CLI capture, CLI search\n\n## Installation\n\n```bash\ncurl -fsSL https://raw.githubusercontent.com/allisonhere/anote/master/install.sh | bash\n```\n\nInstalls to `~/.local/bin` (or `/usr/local/bin`). Override the location:\n\n```bash\nANOTE_INSTALL_DIR=/usr/local/bin curl -fsSL https://raw.githubusercontent.com/allisonhere/anote/master/install.sh | bash\n```\n\nSupported platforms: Linux and macOS, x86_64 and aarch64.\n\n## Build from source\n\n```bash\ncargo build --release\n```\n\nRun TUI:\n\n```bash\ncargo run\n# or\ncargo run -- tui\n```\n\nQuick capture:\n\n```bash\ncargo run -- capture \"Ship the parser\"\ncargo run -- capture -t \"Idea\" \"Use WAL + background indexing\"\n```\n\nSearch:\n\n```bash\ncargo run -- search \"Ship\"\n```\n\n## Data directory\n\n- Linux default: `~/.local/share/anote/`\n- Falls back to `./.anote/`\n\nOverride:\n\n```bash\nANOTE_DATA_DIR=/path/to/data cargo run\n```\n\n## Config file\n\n- Linux default: `~/.config/anote/config.toml`\n- Falls back to `./.anote/config.toml`\n\nOverride:\n\n```bash\nANOTE_CONFIG_PATH=/path/to/config.toml cargo run\n```\n\n### Options\n\n```toml\ntheme   = \"neo-noir\"   # neo-noir | paper | matrix\nkeymap  = \"default\"    # default | vim\ndensity = \"cozy\"       # cozy | compact\nsort    = \"manual\"     # manual | updated | title\ndaily_template = \"# {date}\\n\\n## Tasks\\n\\n## Notes\\n\"  # {date} → YYYY-MM-DD\n```\n\nAll fields are optional — missing fields fall back to the defaults above. The config file also stores the last-open note automatically so the TUI can restore your place on startup. Changes to `theme`, `keymap`, and `sort` can also be made at runtime via `:theme \u003cname\u003e`, `:keymap \u003cname\u003e`, and `:sort \u003cmode\u003e` in the command palette.\n\n## TUI keybindings\n\n### Primary flows\n\n| Task | Primary path |\n|------|--------------|\n| Edit a note | select it, then `Enter` |\n| Jump to a note | `Ctrl+P` |\n| Search notes | `/` |\n| Browse tags | `g` |\n| Browse archive / trash | `A` / `T` |\n| Bulk actions | `x` to mark, then act |\n\n### Normal mode\n\n| Key | Action |\n|-----|--------|\n| `j` / `k` or `↑` / `↓` | navigate notes |\n| `n` | new note |\n| `e` or `Enter` | open note in editor |\n| `d d` | delete note |\n| `/` | search / filter notes |\n| `:` | power tools / command palette |\n| `\\` | toggle notes pane |\n| `Ctrl+P` | quick switcher |\n| `Ctrl+D` | open today's daily note |\n| `g` | browse and manage tags |\n| `x` | toggle note selection |\n| `*` | select all visible notes |\n| `u` | clear selection |\n| `p` | pin selected notes or toggle current note |\n| `a` | archive selected/current note |\n| `A` | open archive browser |\n| `T` | open trash browser |\n| `D` | move selected note(s) to trash |\n| `r` | reload notes |\n| `?` | help overlay |\n| `q` | quit |\n| `F6` | cycle theme |\n| `F7` | cycle keymap |\n| `F9` | cycle sort mode |\n\n### Collapsed pane (preview only)\n\n| Key | Action |\n|-----|--------|\n| `j` / `k` or `↑` / `↓` | scroll preview one line |\n| `PgDn` / `PgUp` | scroll preview fast |\n\n### Edit mode\n\n| Key | Action |\n|-----|--------|\n| `Esc` | exit to preview |\n| `Ctrl+S` | save |\n| `Ctrl+D` | open today's daily note |\n| `Ctrl+Z` / `Ctrl+Y` | undo / redo |\n| `Ctrl+C` / `Ctrl+X` | copy / cut |\n| `Ctrl+V` | paste from clipboard |\n| `Ctrl+F` | find in note |\n| `Ctrl+L` | run spell/grammar lint |\n| `Tab` | apply first lint suggestion at cursor |\n| `]` / `[` | jump to next / prev lint |\n\n### Find mode (Ctrl+F, default keymap)\n\nType freely to build the query — all characters including `n`/`N` go into the search term. Matches highlight live.\n\n| Key | Action |\n|-----|--------|\n| `↓` / `↑` | next / prev match while typing |\n| `Enter` or `Tab` | commit query → navigation phase |\n| `Esc` | cancel find |\n\nNavigation phase (after Enter):\n\n| Key | Action |\n|-----|--------|\n| `n` / `↓` | next match |\n| `N` / `↑` | prev match |\n| `Enter` | enter edit mode at current match |\n| `Backspace` | return to typing phase |\n| any char | restart typing with that character |\n| `Esc` | close find |\n\n### Search (/ to enter)\n\n| Token | Effect |\n|-------|--------|\n| `#tag` | filter by tag |\n| `/folder` | filter by folder |\n| plain text | full-text search |\n\n### Tag browser (`g` or `:tags`)\n\n| Key | Action |\n|-----|--------|\n| `j` / `k` or `↑` / `↓` | move through tags |\n| `Enter` | filter notes by selected tag |\n| `n` | create a new tag |\n| `c` / `e` | choose a color for selected tag |\n| `D` | delete the tag from all notes, with confirmation |\n| `Esc` | close browser or cancel tag editing |\n\n## Trash / Archive\n\n| Key / Command | Action |\n|---------------|--------|\n| `a` | archive the selected or current note |\n| `A` | open archive browser |\n| `T` | open trash browser |\n| `D` | move selected note(s) to trash |\n| `j` / `k` or `↑` / `↓` | move in archive or trash browser |\n| `U` | unarchive in archive browser |\n| `D` | move archived note to trash in archive browser |\n| `R` | restore in trash browser |\n| `P` | purge in trash browser |\n| `x` / `*` / `u` | mark / all / clear inside archive or trash browser |\n| typing / `Backspace` | live-filter archive or trash browser results |\n\n### Vim keymap extras\n\n| Key | Action |\n|-----|--------|\n| `h` `j` `k` `l` | move cursor |\n| `i` / `a` | enter insert mode |\n| `v` | visual select |\n| `y` / `d` | yank / delete (to system clipboard) |\n| `p` / `P` | paste from system clipboard |\n| `u` / `Ctrl+R` | undo / redo |\n| `l` (normal mode) | open selected note from notes pane |\n\n## Power tools (`:`)\n\n| Command | Description |\n|---------|-------------|\n| `:new` | create a new note |\n| `:import \u003cpath...\u003e` | import file(s) as notes; quote paths with spaces |\n| `:export \u003cpath\u003e` | export the current note; quote paths with spaces |\n| `:edit` | open note in editor |\n| `:daily` | open today's daily note |\n| `:folder \u003cname\u003e` | move note to folder (blank = remove) |\n| `:pin` / `:unpin` | pin note to top of list |\n| `:search \u003cquery\u003e` | run a search programmatically |\n| `:theme \u003cname\u003e` | `neo-noir` \\| `paper` \\| `matrix` |\n| `:keymap \u003cname\u003e` | `default` \\| `vim` |\n| `:sort \u003cmode\u003e` | `manual` \\| `updated` \\| `title` |\n| `:tags` | browse and manage tags |\n| `:archive` / `:archive!` | arm archive confirmation / archive immediately |\n| `:unarchive` | unarchive the current note |\n| `:archived` / `:trash` | open archive / trash browser |\n| `:restore` / `:purge` | restore or permanently delete the current trashed note |\n| `:empty-trash` | permanently delete all trashed notes |\n| `:reload` | refresh note list |\n| `:w` | save |\n| `:wq` / `:x` | save and quit |\n| `:q` / `:quit` | quit |\n\n## Tags\n\nWrite `#tagname` on the first line of a note — tags are extracted automatically and searchable with `#tag` in the search bar.\n\nOpen the tag browser with `g` or `:tags`, then use `n` to create a tag, `c` or `e` to choose its color, and `D` to remove a tag from every note that uses it. Created tags can exist before they are applied to a note, and chosen colors persist across restarts.\n\nTags are displayed as colored pills in the note header, quick switcher, and tag browser. The pill caps use Nerd Font powerline glyphs (`\\uE0B6`/`\\uE0B4`) — install a [Nerd Font](https://www.nerdfonts.com/) and set it as your terminal font for the best appearance.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fallisonhere%2Fanote","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fallisonhere%2Fanote","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fallisonhere%2Fanote/lists"}