Skip to content

Releases: mihai-vlc/path-autocomplete

1.24.1

30 May 20:39
Compare
Choose a tag to compare

1.24.0

  • Adds support for regex modifiers on the replace transformation. Fixes #118
  • Adds support for the inputReplace transformation type. Fixes #118

1.23.0

  • Adds support for language specific configurations. Fixes #123

1.21.0

03 Sep 16:13
Compare
Choose a tag to compare
  • Adds support for the useSingleBackslash preference. Fixes #57
  • Implements the auto detection of the useBackslash flag, fixes #112
  • Updates the activation events to use onStartupFinished, fixes #114

1.20.2

01 Aug 01:42
Compare
Choose a tag to compare

Fixed the dependencies.

1.20.0

31 Jul 07:25
Compare
Choose a tag to compare

1.20.0
Adds support for VS Code for Web

1.19.1

13 Mar 12:56
Compare
Choose a tag to compare

Fixes the extension loading on remote ssh #108

1.19.0

05 Mar 14:43
Compare
Choose a tag to compare

Updates the completion label to be consistent with insertText
Fix: asar file is recogonized as directory
Upgrade dependencies

1.18.0

19 Dec 11:57
Compare
Choose a tag to compare
  1. integrate some useful front end tools: eslint, prettier
  2. optimize dotfiles, settings.json, launch.json
  3. fix #100
  4. remove npm package suggestion because VSCode has builtin support
  5. code style and performance optimization

1.17.1

07 Feb 17:28
0771415
Compare
Choose a tag to compare

Fixed issue with absolute paths on windows.

1.17.0

20 Dec 15:05
Compare
Choose a tag to compare

Adds support for partial paths.
Previously the completions were only generated if the path inserted by the user
was a valid folder on the disk.
Starting with this version partial paths are suppored as well.
Examples:

./tmp/folder1/   -- generates suggetions
./tmp/fol        -- generates suggetions for ./tmp/ and filters out items that don't start with fol

This feature fixes: #87

1.16.0

20 Dec 11:53
Compare
Choose a tag to compare

Added new option path-autocomplete.disableUpOneFolder. Fixes #89
By default it's set to true.