gitextract_hgo16td6/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── config.yml │ │ └── feature_request.md │ ├── copilot-instructions.md │ ├── instructions/ │ │ └── localization-pr-review.instructions.md │ ├── pull_request_template.md │ ├── skills/ │ │ ├── vscode-ext-commands/ │ │ │ └── SKILL.md │ │ └── vscode-ext-localization/ │ │ └── SKILL.md │ └── workflows/ │ └── main.yml ├── .gitignore ├── .gitmodules ├── .vscode/ │ ├── bookmarks.json │ ├── extensions.json │ ├── launch.json │ ├── numbered-bookmarks.json │ ├── settings.json │ └── tasks.json ├── .vscodeignore ├── AGENTS.md ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── l10n/ │ ├── bundle.l10n.json │ └── bundle.l10n.pt-br.json ├── package.json ├── package.nls.json ├── package.nls.pt-br.json ├── src/ │ ├── core/ │ │ ├── bookmark.ts │ │ ├── constants.ts │ │ ├── container.ts │ │ ├── controller.ts │ │ ├── file.ts │ │ └── operations.ts │ ├── decoration/ │ │ └── decoration.ts │ ├── extension.ts │ ├── quickpick/ │ │ └── controllerPicker.ts │ ├── sticky/ │ │ ├── sticky.ts │ │ └── stickyLegacy.ts │ ├── storage/ │ │ └── workspaceState.ts │ ├── test/ │ │ ├── runTest.ts │ │ └── suite/ │ │ ├── extension.test.ts │ │ └── index.ts │ ├── utils/ │ │ ├── fs.ts │ │ ├── reveal.ts │ │ └── revealLocation.ts │ └── whats-new/ │ ├── commands.ts │ └── contentProvider.ts ├── tsconfig.json ├── walkthrough/ │ ├── customizingAppearance.md │ ├── customizingAppearance.nls.pt-br.md │ ├── inspiredInDelphiButOpenToOthers.md │ ├── inspiredInDelphiButOpenToOthers.nls.pt-br.md │ ├── navigateToNumberedBookmarks.md │ ├── navigateToNumberedBookmarks.nls.pt-br.md │ ├── toggle.md │ ├── toggle.nls.pt-br.md │ ├── workingWithRemotes.md │ └── workingWithRemotes.nls.pt-br.md └── webpack.config.js