├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── img └── icon.png ├── package.json ├── src ├── associationManager.ts ├── decorations.ts ├── extension.ts ├── findJump.ts ├── getMatches.ts ├── inlineInput.ts ├── types.ts └── utils.ts ├── tsconfig.json └── webpack.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-find-jump/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-find-jump/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | dist 3 | node_modules 4 | 5 | *.vsix 6 | *.todo -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-find-jump/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-find-jump/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-find-jump/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-find-jump/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-find-jump/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-find-jump/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-find-jump/HEAD/README.md -------------------------------------------------------------------------------- /img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-find-jump/HEAD/img/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-find-jump/HEAD/package.json -------------------------------------------------------------------------------- /src/associationManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-find-jump/HEAD/src/associationManager.ts -------------------------------------------------------------------------------- /src/decorations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-find-jump/HEAD/src/decorations.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-find-jump/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/findJump.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-find-jump/HEAD/src/findJump.ts -------------------------------------------------------------------------------- /src/getMatches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-find-jump/HEAD/src/getMatches.ts -------------------------------------------------------------------------------- /src/inlineInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-find-jump/HEAD/src/inlineInput.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-find-jump/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-find-jump/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-find-jump/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usernamehw/vscode-find-jump/HEAD/webpack.config.js --------------------------------------------------------------------------------