質問編集履歴
1
ユースケースを追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
vscodeでfileをrenameした時に,一括でfilePathを更新できる方法をご存知ではないでしょうか?
|
2
2
|
|
3
|
+
ex)
|
4
|
+
①以下のようにhtmlのファイル名を変更した時に,
|
5
|
+
index.html → top.html
|
6
|
+
|
7
|
+
②以下のように,相対リンクが更新される
|
8
|
+
<a href="./index.html"> </a>
|
9
|
+
↓
|
10
|
+
<a href="./top.html"> </a>
|
11
|
+
|
3
12
|
開発環境
|
4
13
|
・MacOS
|
5
14
|
・VSCode
|