{"id":37787396,"url":"https://github.com/yendo/fcqs","last_synced_at":"2026-01-16T15:13:40.393Z","repository":{"id":191653166,"uuid":"685091770","full_name":"yendo/fcqs","owner":"yendo","description":"Quick searcher for flashcards-like notes with fzf","archived":false,"fork":false,"pushed_at":"2025-02-10T10:05:05.000Z","size":176,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-10T11:22:48.796Z","etag":null,"topics":["bash","cli","fzf","notes","search"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yendo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2023-08-30T13:54:23.000Z","updated_at":"2025-02-10T10:05:08.000Z","dependencies_parsed_at":"2023-09-24T12:25:11.413Z","dependency_job_id":"a2fda3a2-c1b9-4daf-80b7-3d232e61d365","html_url":"https://github.com/yendo/fcqs","commit_stats":null,"previous_names":["yendo/fcs","yendo/fcqs"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/yendo/fcqs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yendo%2Ffcqs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yendo%2Ffcqs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yendo%2Ffcqs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yendo%2Ffcqs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yendo","download_url":"https://codeload.github.com/yendo/fcqs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yendo%2Ffcqs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28479406,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T11:59:17.896Z","status":"ssl_error","status_checked_at":"2026-01-16T11:55:55.838Z","response_time":107,"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":["bash","cli","fzf","notes","search"],"created_at":"2026-01-16T15:13:40.289Z","updated_at":"2026-01-16T15:13:40.371Z","avatar_url":"https://github.com/yendo.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# fcqs\n\nfcqs is a quick searcher for flashcards-like notes with fzf.\n\n## Usage\n\nPress `Ctrl+o` (customizable) to launch fcqs on command-line.\n\nYou can search for the title of the note with fzf.\nThe preview screen shows the contents of the note.\nThe following key bindings are available.\n\n- Enter key: Output the note to standard output.\n  If the notes has shell fenced code blocks, the first block is pasted to the command-line.\n- Ctrl+y: Copy the note to clip board.\n- Ctrl+o: Open the first URL in the note with a browser.\n- Ctrl+e: Edit the note\n\n## Installation\n\nInstall [fzf](https://github.com/junegunn/fzf) which is required to use fcqs.\n\nDownload the fcqs archive from [GitHub Releases](https://github.com/yendo/fcqs/releases) and extract it.\n\nCopy the command `fcqs-cli` to a directory with a path.\n\n``` sh\ninstall fcqs-cli ~/.local/bin/\n```\n\nAdd the following function for fcqs to `~/.bashrc` for Bash \u0026 Unix users.\n\nFor Unix standard editor (Vim, Emacs, nano, gedit, etc.):\n\n``` bash\nexport VISUAL=\"vim\"\neval \"$(fcqs-cli --bash)\"\n```\n\nFor Visual Studio Code:\n\n``` bash\nexport FCQS_EDITOR=\"vscode\"\neval \"$(fcqs-cli --bash)\"\n```\n\nYou can customize settings.\n\n``` bash\nexport FCQS_COPY_KEY=\"ctrl-y\"\nexport FCQS_OPEN_KEY=\"ctrl-o\"\nexport FCQS_EDIT_KEY=\"ctrl-e\"\nexport FCQS_BASH_BIND_KEY=\"\\C-o\"\nexport FCQS_COPY_COMMAND=\"xclip -selection c\"\nexport FCQS_COPY_WITH_TITLE=true\nexport FCQS_OPEN_COMMAND=\"open\"\nexport FCQS_NOTES_FILES=\"~/fcnotes.md\"\n```\n\n\u003e [!NOTE]\n\u003e `--bash` option is only available in fcqs 0.3.0 or later.\n\u003e If you have an older version of fcqs, or want more control,\n\u003e you can use [shell.bash](shell.bash).\n\n## Notes specification\n\n### File\n\nThe default notes file is `~/fcnotes.md`.\n\nThe file can be changed by the environment variable `FCQS_NOTES_FILES`.\nThe variable can specify multiple files using path separators.\nThe path separator is `;` on Windows and `:` on other operating systems.\n\n``` bash\nexport FCQS_NOTES_FILES=~/note.md:/usr/local/doc/note.md\n```\n\n### Format\n\nThe format of notes is similar to Markdown.\nHowever, all you really need are the titles of each note in the heading\nand the content below it.\n\n``` markdown\n# title1\n\ncontents1\n\n# title2\n\ncontents2\n```\n\n## Develop\n\nBuild the command `fcqs-cli`:\n\n``` sh\nmake\n```\n\nUnit test:\n\n``` sh\nmake unit-test\n```\n\nIntegration test:\n\n``` sh\nmake integration-test\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyendo%2Ffcqs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyendo%2Ffcqs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyendo%2Ffcqs/lists"}