Atom text editor
https://atom.io/
GitHub 製のテキストエディタAtom 1.0 がリリースされたので、Ubuntu GNOME 15.04, 15.10 にインストールしてみました。
初期に公開されたものはとても重かったですが、性能と安定性が向上しているようです。

イントール

$ sudo add-apt-repository ppa:webupd8team/atom
$ sudo apt-get update
$ sudo apt-get install atom

日本語フォントのインストール

作業の前にRicty フォントをインストールしておきます。
フォントをインストールした後に、スタイル、メニューを設定します。

スタイルの設定

この設定をしないと、Ubuntu GNOME 15.04,15.10 環境下でAtom を日本語化した際に文字化けしてしまいました。

~/.atom/styles.less
@font-family-p: Ricty;
@font-family-m: Ricty;

.tree-view {
font-family: @font-family-p;
}
.atom-text-editor {
font-family: @font-family-m;
}
.vertical {
font-family: @font-family-p;
}

.markdown-preview {
font-family: @font-family-p;

h1, h2, h3, h4, h5, h6 {
font-family: @font-family-p;
}

pre, code, tt {
font-family: @font-family-m;
}
}

編集領域の日本語化

  1. Edit > Preferences メニューを選択
  2. Settings を選択
  3. Editor Settings - Font Family にRictyを指定

メニューの日本語化

  1. Edit > Preferences メニューを選択
  2. Install を選択
  3. japanese-menu を検索してインストール

markdown-preview

Ctrl + Shift + M

Install Packages

  • atom-terminal-panel
  • git-plus
  • Minimap
  • Sublime-Style-Column-Selection
    mainMouseNum は1 にした方が使いやすいかも。なお、日本語のバイト位置が適切に処理できていない。
    ~/.atom/packages/Sublime-Style-Column-Selection/lib/sublime-select.coffee
    when 'linux'
    selectKey: 'shiftKey'
    mainMouseNum: 2
    middleMouseNum: 2
    enableMiddleMouse: false
  • Tool Bar