/vscode-current-file-path-extension

VSCode extension. Display current file's path from absolute (root directory) or workspace highest directory in StatusBar by Unix style or Windows style.

Primary LanguageTypeScriptMIT LicenseMIT

Current File Path for Visual Studio Code

GitHub Action

Visual Studio Code extension. This extension displays a current file path from absolute (root directory) or workspace highest directory in StatusBar by Unix style or Windows style.

Features

  • Display a current file's path in the StatusBar.
    • Absolute (root directory) or starts from workspace highest directory
      • You can select which to use by settings.
      • You can change the path appearance with QuickPick or command palette.
    • Path separator style can choose Unix or Windows.
      • You can select which to use by settings.
      • You can change it with QuickPick or command palette.
  • Copy a current file path to clipboard.
  • Copy a current file name to clipboard.
  • Support copy feature on the remote-host.
    • e.g. Remote-WSL, Remote-Linux
  • You can set a display priority in the StatusBar by setting.

Images

Command Palette

Extension Settings

Property Description value Default
currentFilePath.defaultPathStyle Specify default path style. Unix like or Windows like. unix
windows
unix
currentFilePath.priorityInStatusBar The priority in the statusBar. Higher values shown more to the left. 0 ~ max int 0
currentFilePath.defaultPathStartsFrom Default value of where the path is displayed starts from. Root directory or workspace highest directory. rootDirectory
workSpace
rootDirectory

Requirements

  • Visual Studio Code 1.40.0 later
  • Linux will probably have to install xsel.
    • e.g.) Debian/Ubuntu sudo apt install xsel

Release Notes

v3.1.0


New features

  • (refs #151): Support copy feature on the remote-host @dlguswo333
    • e.g. Remote-WSL, Remote-Linux
    • replace clipboardy with vscode.env.clipboard

Misc

  • f735692: update some devDependencies

v3.0.0


Breaking change

  • 6664105: Bump min support VSCode version from 1.18.0 to 1.40.0

New features

  • 5811830: Add open extension settings

Misc

v2.0.0


Breaking change

fromWorkSpaceOrNot setting changed to defaultPathStartsFrom. Please change your setting if use.

New feature

  • (refs #16) All action callable from command palette.
  • (refs #19) Implement copy file name feature.

Bug fix

  • (refs #21) Can not get correct each root folder path if workspace has some folders.

Others

  • Change some UI
  • Improve wording

v1.0.0


  • Initial release