やりたいことと操作
cities = %w{London Berlin New York}
を
cities = [London Berlin New York]
にしたい
①"%w"を削除
dt{
②対応する括弧へ移動
%
③"}"を"]"に置換
r]
④元あった対応括弧元へ移動
ここが一番のポイント
''
⑤"{"を"["に置換
r[
その他
vim-sandwichを使わせていただいているので登場出番は少ないかもしれないが
覚えておきたい
Go to list of users who liked
More than 1 year has passed since last update.
cities = %w{London Berlin New York}
を
cities = [London Berlin New York]
にしたい
①"%w"を削除
dt{
②対応する括弧へ移動
%
③"}"を"]"に置換
r]
④元あった対応括弧元へ移動
ここが一番のポイント
''
⑤"{"を"["に置換
r[
vim-sandwichを使わせていただいているので登場出番は少ないかもしれないが
覚えておきたい
Register as a new user and use Qiita more conveniently
Go to list of users who liked