Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>VSCode Copy fully qualified name of thing at editor cursor.New to Visual Studio Code? Get it now.
VSCode Copy fully qualified name of thing at editor cursor.

VSCode Copy fully qualified name of thing at editor cursor.

Sandip Chitale

|
2,630 installs
| (4) | Free
VS Code extention to copy fully qualified name of thing at editor cursor.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

vscode-copy-fqn

VS Code extention to copy fully qualified name of thing at editor cursor.

Examples

If the cursor is on startsWith method name in Java editor:

("Hello World").startsWith("Hello");

Invoking Copy Fully Qualified Name command from command pallette or editor context menu, copies:

java.lang.String.startsWith(String prefix)

to clipboard.

If the cursor is on AuthorizationServerConfigurerAdapter method name in Java editor:

public class AuthorizationServerConfig extends AuthorizationServerConfigurerAdapter {

Invoking Copy Fully Qualified Name command from command pallette or editor context menu, copies:

org.springframework.security.oauth2.config.annotation.web.configuration.AuthorizationServerConfigurerAdapter

to clipboard.

If the cursor is on activate function name in typescript editor:

export function activate(context: vscode.ExtensionContext) {

Invoking Copy Fully Qualified Name command from command pallette or editor context menu, copies:

function activate(context: vscode.ExtensionContext): void

to clipboard.

Known Issues

  • Does not work for Java fields

Release Notes

1.0.0

Initial release

1.0.1

For Java try to match the Eclipse JDT's Copy Qualified Name command. Works for Classes and methods and parameters. Does not work for fields.

1.0.2

Minor fixes.

1.0.3

Update README.

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft