2015-03-01から1ヶ月間の記事一覧
Google Chromeをインストールしたところ, xdg-openで使われるブラウザが Chromeになってしまった. デフォルトブラウザの変更 % sudo update-alternatives --config x-www-browserupdate-alternativesコマンドで確認したところ, x-www-browserに Chromeが 設…
保存時等しか差分更新できないのはいけていないという意見をいただいたので, 保存しなくても差分情報を更新する機能を試験的に実装しました. (本家 Sublime Text版や Vim版ではだいぶ前に実装されている機能です) イメージ 設定例 git-gutter:update-interva…
(kantou-emacs #x02) #関東Emacs : ATND 発表予定は今のところありませんが, それまでにいろいろ作ったり, 既存のものを改良して紹介できればと考えています. 現在職探しも行っているので, 関東方面の情報を収集できればと思います. よろしくお願いします.
Replace commands of anzu works like re-builder or visual-regexp now. Screenshot
emacsでjson編集したら保存時にvalidかどうかチェックしてくれるようなのないかな? あるよなきっと2015-03-03 11:02:19 via YoruFukurou flycheck 保存時ではありませんが, 常時チェックしたい場合は flycheckがよいでしょう. jsonlintを事前にインストール…
echo "orig="$PATH IFS=':' read -a pathes <<< "$PATH" declare -a tmp_pathes for path in "${pathes[@]}" do if [ "$path" != "$HOME/.plenv/bin" ]; then tmp_pathes=("${tmp_pathes[@]}" "$path") fi done TMP_PATH=$(printf ":%s" "${tmp_pathes[@]}")…
Installation % git clone git://github.com/tokuhirom/plenv.git ~/.plenv Add configuration Add following configuration to your configuration file(ex ~/.config/fish/config.fish) set -gx PATH ~/.plenv/bin $PATH . (plenv init - | psub) Relaunch…