0
0

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でスムーズな日本語入力、半角スペースやTabを表示させる方法。windows環境

Posted at

PCの初期化で再び設定せねばならなくなったので
覚書を残しておきます。

1.日本語入力をスムーズに

まず、パッケージコントロールをダウンロード。
http://webkaru.net/dev/sublime-text-package-control/

次に、「インストール方法」を参考にIMESupportをインストール
https://github.com/chikatoike/IMESupport
ちなみに、私の環境(Windows10)ではインストール完了のメッセージは確認できず。しかし、日本語が直接入力できるようになっていました。

2.半角スペース、Tabを表示する

Preference>Setting-Userを選択し

{
"font_size": 16,
"ignored_packages": ["Vintage"],
"remember_open_files": false, // Sublimeを終了する直前に開いていたファイルを記憶するかどうか
"close_windows_when_empty": true, // 開いているファイルがなくなったらSublimeを終了するかどうか
"draw_white_space": "all", // スペースやタブを可視化する
"fallback_encoding": "UTF-8", // 文字コードを自動判別できなかった時のデフォルト文字コード
"highlight_line": true, // 現在行をハイライト
"overlay_scroll_bars": "disabled", // 水平スクロールバーが常に表示されるようにする
"show_encoding": true, // 文字コードをステータスバーに表示
"show_line_endings": true, // 改行コードをステータスバーに表示
"trim_trailing_white_space_on_save": true, // 保存時に空白を除去する
"word_wrap": false,
"rulers": [0,200],
}

にまるごと置き換える。(目が悪いのでfont_size:16)

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?