🦁

git commit で Pulsar(Atom後継エディタ) を使う

2021/06/19に公開

git commit で Pulsar(Atom後継エディタ) を使う

12月15日の Atom 閉鎖に伴い、コミュニティ主導で Pulsar の開発が行われています。
https://pulsar-edit.dev

準備

コマンドラインから Pulsar を起動できるようにする。

$ which atom で、エイリアスが /usr/local/bin/atom にあることが分かりますので、 /Applications/Atom.app/Contents/Resources/app/atom.sh/Applications/Pulsar.app/Contents/Resources/app/pulsar.sh にコピーします。
pulsar.sh をエディタで開いて、 Atom -> Pulsar, ATOM -> PULSAR, atom -> pulsar に置換します。
おそらくもっと賢い手法があることと思いますが、これで、コマンドラインから $ pulsar で、Pulsar が起動するようになりました。

git commit で Pulsar を使う

.bash_profile
git config --global core.editor "pulsar --wait"

使い方

  1. 適宜 コードを書く
  2. 書き終わったらgit commit
  3. Pulsarが起動するので、コミットメッセージを記す
  4. ⌘-S で保存 ⌘-W でタブを閉じる
  5. git push

Discussion