5
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

フォルダの中身をSublimeTextで一括リネームする

Posted at

Sublime Textの強力な機能の1つマルチキャレットをつかって一括リネームがしたい!
コレを叶えてくれるのがmassrenです。

##環境

  • OSX Yosemite
  • Sublime Text 3

##Install
homebrew はインストール済み想定です。インストールしてない方は適当にググってください。

インストール
$ brew tap laurent22/massren
$ brew install massren

Sublime Text 3はそのままではmassrenで呼び出せないので、パスが通る適当なディレクトリにシンボルを作成します。
(以下は/usr/local/binにシンボルを作成)

設定
$ ln -s /Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl /usr/local/bin

Sublimeが起動することを確認します。

テスト
$ subl

massrenにデフォルトのテキストエディタを設定します。

設定
$ massren --config editor subl

インストールは以上です。
##つかってみる

cd "開きたいディレクトリパス"
massren

これでSublimeで設定ファイルらしきものが開けるので、
テキストエディタ上で修正・保存すれば、ディレクトリ内のファイルのリネームが完了します!

なんて便利!!

おまけ

関連して自作プラグインの紹介です。
ファイル名に連番入れたいときは、InputSequenceと組み合わせるとより便利です。

5
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?