{"id":17015385,"url":"https://github.com/plusls/gdb-fzf","last_synced_at":"2025-07-04T09:08:01.634Z","repository":{"id":153095660,"uuid":"627334175","full_name":"plusls/gdb-fzf","owner":"plusls","description":"Replace gdb default history searcher and auto complete with fzf fuzzy finder","archived":false,"fork":false,"pushed_at":"2023-04-14T07:28:55.000Z","size":5119,"stargazers_count":21,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-12T09:53:40.399Z","etag":null,"topics":["gdb"],"latest_commit_sha":null,"homepage":"","language":"Python","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/plusls.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}},"created_at":"2023-04-13T08:50:57.000Z","updated_at":"2025-02-16T08:44:02.000Z","dependencies_parsed_at":"2023-06-03T15:30:21.532Z","dependency_job_id":null,"html_url":"https://github.com/plusls/gdb-fzf","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/plusls/gdb-fzf","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plusls%2Fgdb-fzf","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plusls%2Fgdb-fzf/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plusls%2Fgdb-fzf/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plusls%2Fgdb-fzf/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/plusls","download_url":"https://codeload.github.com/plusls/gdb-fzf/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plusls%2Fgdb-fzf/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263480900,"owners_count":23473165,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["gdb"],"created_at":"2024-10-14T06:28:31.081Z","updated_at":"2025-07-04T09:08:01.626Z","avatar_url":"https://github.com/plusls.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GDB with fzf python plugin\n\n\nThis is a patch for GDB that integrates [FZF fuzzy finder](https://github.com/junegunn/fzf) with GDB's history search and auto complete.\n\n\n![example-complete](example-complete.gif)\n\n## Installation\n\n1. install fzf\n    + For Debian/Ubuntu: `apt install fzf`\n2. Add `source {Your download path}/gdb-fzf.py` to `~/.gdbinit`\n\n\nYou can turn off feature by commenting out\n\n```python\n    assert (libreadline.rl_bind_keyseq(b\"\\\\C-r\", fzf_search_history) == 0)\n    assert (libreadline.rl_bind_keyseq(b\"\\\\t\", fzf_auto_complete) == 0)\n```\n\nAnd you also can add your key binding.\n\n## Better GDB auto complete\n\nAdd to `~/.inputrc`\n\nWarning: **It will effect all programs that use libreadline**\n\n```\n\"\\e[A\": \"\\e[A\": history-search-backward\n\"\\e[B\": history-search-forward\n```\n\n## Infinite GDB history\n\nSet up infinite GDB history. Should be added to `~/.gdbinit`.\n\n```gdb\n# https://stackoverflow.com/a/3176802/6824752\nset history save on\nset history size unlimited\nset history remove-duplicates unlimited\nset history filename ~/.gdb_eternal_history\n```\n\n\n## More completions\n\nSet up GDB `max-completions`. Should be added to `~/.gdbinit`.\n\n```\nset max-completions 0x10000 \n```\n## Reference\n\n+ https://github.com/filipkilibarda/gdb_fzf_patch\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplusls%2Fgdb-fzf","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fplusls%2Fgdb-fzf","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplusls%2Fgdb-fzf/lists"}