LoginSignup
1
2

More than 5 years have passed since last update.

Atom のタイトルバーを custom-title で自由に変える

Posted at

custom-title について

設定例

フルパスを表示する場合

<% if (filePath) { %><%= filePath %><% if (gitHead) { %> [<%= gitHead %>]<% } %><% } else { %><%= fileName %><% } %>

=> /Users/username/workspace/hoge_app/app/models/user.rb [master] のように表示される

プロジェクト以下のパスを表示する場合

<% if (relativeFilePath) { %><%= projectName + "/" + relativeFilePath %><% if (gitHead) { %> [<%= gitHead %>]<% } %><% } else {%><%= fileName %><%} %>

=> hoge_app/app/models/user.rb [master] のように表示される

1
2
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
1
2