13
7

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.

Githubのタブが8文字で見にくいのでextensionで解決

Posted at

参考:http://stackoverflow.com/questions/8833953/how-to-change-tab-size-on-github

Stylish(ChromeExtension)のインストール

ChromeのExtensionをインストール
FirefoxもAdd onあります

設定

Extensionの設定画面から下記設定します。

スクリーンショット_2014-08-28_13_31_12.png

css上書き用のコードはこちら。デフォルトで4文字、rubyのコードの場合は2文字にしたい時には下記のようになります。言語によっていろいろ変えたい場合は適宜編集してください。

.tab-size-8 {
    -moz-tab-size: 4 !important;
    -webkit-tab-size: 4 !important;
    -o-tab-size: 4 !important;
    tab-size: 4 !important;
}
    
.type-ruby .tab-size-8 {
    -moz-tab-size: 2 !important;
    -webkit-tab-size: 2 !important;
    -o-tab-size: 2 !important;
    tab-size: 2 !important;
}

おまけ

パラメータの後ろに?ts=2とか?ts=4とか入れると簡単にタブサイズ切り替えれるようです。ただ、毎回は面倒なのでExtension入れとくといいかと。

13
7
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
13
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?