{"id":16158747,"url":"https://github.com/nagy-nabil/booker","last_synced_at":"2025-09-10T14:33:21.240Z","repository":{"id":155621637,"uuid":"628754610","full_name":"nagy-nabil/booker","owner":"nagy-nabil","description":"move between files in vscode BLAZINGLY FAST","archived":false,"fork":false,"pushed_at":"2024-03-20T05:33:17.000Z","size":751,"stargazers_count":6,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-28T12:20:23.824Z","etag":null,"topics":["vscode","vscode-extension","workspace-management","workspaces"],"latest_commit_sha":null,"homepage":"https://marketplace.visualstudio.com/items?itemName=nagy-nabil.booker","language":"TypeScript","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/nagy-nabil.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2023-04-16T22:43:41.000Z","updated_at":"2024-03-17T05:38:41.000Z","dependencies_parsed_at":"2024-10-27T19:14:28.998Z","dependency_job_id":"ce79628a-0ae2-4289-8841-1e35c4a21ac1","html_url":"https://github.com/nagy-nabil/booker","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nagy-nabil%2Fbooker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nagy-nabil%2Fbooker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nagy-nabil%2Fbooker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nagy-nabil%2Fbooker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nagy-nabil","download_url":"https://codeload.github.com/nagy-nabil/booker/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243950792,"owners_count":20373664,"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":["vscode","vscode-extension","workspace-management","workspaces"],"created_at":"2024-10-10T01:54:56.760Z","updated_at":"2025-03-18T21:31:34.681Z","avatar_url":"https://github.com/nagy-nabil.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Booker\n\nextension inspired by [ThePrimeagen/harpoon](https://github.com/ThePrimeagen/harpoon), it gives you the ability to mark files to move between them blazingly fast, so basically move between files with the lsp then return to the important ones -without fuzzy finder- again blazingly fast!\n\n## The Problem\n\nYou're implementing some feature so your focus is mainly on two files or so but you need to jump to another file to check something's definition, a new file opened, and another now you need to go back to **the main file**, What now? fuzzy-finder? file tr*e? we don't want to do that we need the main file under our hands.\n\nHow to do this? Mark your important files `booker.mark.add`, jump between files with the LS then come back to the main file with `booker.mark.jump1` for example and here it's going back to the main file without searching.\n\n## Features\n\n![demo](./assets/demo.gif)\n\n- marks per workspace\n\n- mark active file `booker.mark.add`\n\n- remove the mark from active file `booker.mark.remove`\n\n- show all marked files through vscode quickPick `booker.mark.show`\n\n- hard coded jumps\n\n  - jump to file at index 1 `booker.mark.jump1`\n\n  - jump to file at index 2 `booker.mark.jump2`\n\n  - jump to file at index 3 `booker.mark.jump3`\n\n- reorder marks order though textEditor as you edit any file `booker.ui.show`\n\n## TODOS\n\n- [ ] add mark to index[the default is at the tail]\n- [ ] global marks\n\n## Extension Settings\n\n| Command           | Title                                        | Default Shortcut |\n| ----------------- | -------------------------------------------- | ---------------- |\n| booker.mark.add   | booker: add mark at current active editor    | TBD              |\n| booker.mark.remove| booker: remove mark from current active editor| TBD              |\n| booker.mark.show  | booker: show quick pick for all marked files | TBD              |\n| booker.mark.jump1 | booker: jump to first mark                   | TBD              |\n| booker.mark.jump2 | booker: jump to second mark                  | TBD              |\n| booker.mark.jump3 | booker: jump to third mark                   | TBD              |\n| booker.ui.show | booker: show booker editor ui                        | TBD              |\n\n### vscodevim keybindings example\n\n  ```json\n        {\n            \"before\": [\"\u003cleader\u003e\", \"a\"],\n            \"commands\": [\"booker.mark.add\"]\n        },\n        {\n            \"before\": [\"\u003cleader\u003e\", \"r\"],\n            \"commands\": [\"booker.mark.remove\"]\n        },\n        {\n            \"before\": [\"\u003cleader\u003e\", \"1\"],\n            \"commands\": [\"booker.mark.jump1\"]\n        },\n        {\n            \"before\": [\"\u003cleader\u003e\", \"2\"],\n            \"commands\": [\"booker.mark.jump2\"]\n        },\n        {\n            \"before\": [\"\u003cleader\u003e\", \"3\"],\n            \"commands\": [\"booker.mark.jump3\"]\n        }\n  ```\n\n## Release Notes\n\n### 0.99.4\n\n- close the editor when the editor is not active\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnagy-nabil%2Fbooker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnagy-nabil%2Fbooker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnagy-nabil%2Fbooker/lists"}