Quantcast
Channel: Vimタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 5608

vimで現在開いているファイルのコピー,リネーム,削除をする

$
0
0

vim上でのリネーム方法が思った以上にシンプルなコマンドだったのでメモ
ついでにコピーと削除の方法も記載

リネーム

:f [変更後ファイル名]|call delete(expand('#'))

実行後、「:w」して保存しておかないとファイルが消えるので注意

コピー

:w [コピーファイル名]または :f [コピーファイル名]

前者がコピー元、後者がコピー先のファイルを実行後に表示

削除

:call delete(expand('%'))

あわせて知っておきたい

ファイルをコピー,リネームする場合は現在開いているファイルのパス情報を利用することが多いのでそれの取得方法をメモ

/home/hoge/workspacetmp.txtを開いている状態とする

記号意味
%カレントファイル./tmp.txt
%:pフルパス/home/hoge/workspace/tmp.txt
%:hカレントディレクトリ./
%:tファイル名tmp.txt
%:r拡張子除去./tmp
%:e拡張子のみtxt

p,h,t,r,eは変換子で組み合わせ可
%:p:h -> /home/hoge/workspace

例)バックアップファイルを作成する

:w %.bk

参考サイト


Viewing all articles
Browse latest Browse all 5608

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>