copy-with-imports icon indicating copy to clipboard operation
copy-with-imports copied to clipboard

VS Code extension to copy with imports

Results 13 copy-with-imports issues
Sort by recently updated
recently updated
newest added

Hi, thank you for your hard work and a cool extension. I saw in the code you have a check that both files should be the same extension type. But...

I'm using the VSCodeVim extension, and Copy With Imports wasn't doing anything. I'm currently using macOS. I found it worked if I disabled two of the Vim keybinds: ``` {...

Hi! First of all, thanks for creating this extension. It works well! In my setup, I’m using file extensions in my import statements. It would be nice if this could...

## Steps to reproduce Full reduced test case: https://github.com/OliverJAsh/copy-with-imports-base-url-test Enable `"copy-with-imports.path-relative-from-tsconfig": true`. `tsconfig.json`: ```json { "compilerOptions": { "baseUrl": "app" } } ``` `app/helpers/foo.ts`: ```ts export const foo = 1; ```...

Bumps [webpack](https://github.com/webpack/webpack) from 5.25.0 to 5.76.0. Release notes Sourced from webpack's releases. v5.76.0 Bugfixes Avoid cross-realm object access by @​Jack-Works in webpack/webpack#16500 Improve hash performance via conditional initialization by @​lvivski...

dependencies

Bumps [minimist](https://github.com/minimistjs/minimist) and [mkdirp](https://github.com/isaacs/node-mkdirp). These dependencies needed to be updated together. Updates `minimist` from 1.2.5 to 1.2.8 Changelog Sourced from minimist's changelog. v1.2.8 - 2023-02-09 Merged [Fix] Fix long option...

dependencies

Bumps [json5](https://github.com/json5/json5) from 2.2.0 to 2.2.3. Release notes Sourced from json5's releases. v2.2.3 Fix: [email protected] is now the 'latest' release according to npm instead of v1.0.2. (#299) v2.2.2 Fix: Properties...

dependencies

To get the make build working with index.ts imports a the root of a module I had to add ``` "@lucid/injector": [ "../injector" ], "@lucid/injector/*": [ "../injector/*" ], ``` To...

e.g. ![image](https://user-images.githubusercontent.com/309321/211075754-74738d0f-2674-419d-b018-2705174780e0.png) I suspect getRelativePath only converts the slash in one place: https://github.com/stringham/copy-with-imports/blob/master/src/pathresolver.ts#L55 I would suggest either always replacing all back slashes or even using if (path.seperator is backslash then...