Skip to content

Commit

Permalink
Incremental naming of copied files/folders
Browse files Browse the repository at this point in the history
In VS Code version 1.37 (1) the automatic incremental naming for copied
files that include numbers has been (silently) removed, but than added
back as explorer improvement in version 1.38 (2) with two configuration
options to either add a `copy` suffix or use a `smart` strategy.
The second one adds a number at the end and if some number is already
part of the name, it tries to increase that number. This reflects the
behavior from VS Code versions `<1.38` and is therefore now used.

References:
  (1) https://code.visualstudio.com/updates/v1_37
  (2) https://code.visualstudio.com/updates/v1_38#_explorer-improvements

Resolves GH-215
  • Loading branch information
arcticicestudio committed Sep 7, 2019
1 parent 673e844 commit a509328
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions snowblocks/visual-studio-code/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"editor.tabSize": 2,
"editor.wordWrapColumn": 120,
"explorer.autoReveal": false,
"explorer.incrementalNaming": "smart",
"explorer.openEditors.visible": 0,
"extensions.autoUpdate": false,
"extensions.closeExtensionDetailsOnViewChange": true,
Expand Down

0 comments on commit a509328

Please sign in to comment.