2013-12-01から1ヶ月間の記事一覧

2013年を振り返る

いろいろやったのか記憶力が衰えたのか何を今年にしたか 全然わからないんですが, 軽く総括しておきます. Emacs Lispをよく書いた一年だった 他を言語を書こうという気の方があるんですが, 結局 Emacs Lispをばっかり 書いてしまった一年だったと思います. g…

Perl 5.19.2から $!が decodeされる

ふと Perl 5.19.6をインストールして, Plackをインストールして 見るとテストがコケたので原因を調べていました. 原因は, $!がデコードされていたことでした. エラー t/HTTP-Server-PSGI/harakiri.tがエラーとなります. これには LWP::UserAgent->getが失敗…

coffee-mode supports Emacs "thing 'defun"

I committed that coffee-mode support Emacs "thing 'defun". Repository https://github.com/defunkt/coffee-mode Install/Update You can install/update from MELPA with package.el Support Emacs "thing 'defun" We can use thing function, such as (…

リモートブランチも含め更新日時が新しい順番にソートする

git

http://stackoverflow.com/questions/2514172/listing-each-branch-and-its-last-revisions-date-in-git のままなんですが, いちいち調べるのが面倒になったのでメモと して残しておきます. Androidみたいに, 大量のリモートブランチが あってどのブランチを…

shell-popの C-u prefix

shell-popをアップデートしました. C-u prefixが新機能として追加されました. リポジトリ https://github.com/kyagi/shell-pop-el インストール package.elで MELPA, Marmaladeからインストールできます. C-u prefix C-u M-x shell-pop で空いている番号のシ…

Improve block comment highlighting

I fixed invalid block comment highlighting of coffee-mode. Repository https://github.com/defunkt/coffee-mode Update You can update coffee-mode from MELPA Image Before After Conclusion If you have any problems or suggestions, please report …

robe-completing-read-funcに helm-comp-readを使うためのラッパ関数

robeでは robe-completing-read-funcという変数に任意の補完入力関数を 指定することができます. これはドキュメント表示等で使われます. デフォルトは ido-completing-readで, 他に completing-readを指定する ことができます. これを helmインタフェースに…

Improve Regexp Literal Highlight

I fixed regexp literal highlight in coffee-mode. I hope that we fixed all well-known syntax highlight issue. Repository https://github.com/defunkt/coffee-mode Install/Update You can install newer coffee-mode from MELPA with package.el M-x …

coffee-mode 0.5.0をリリースしました

最近 coffee-modeの co-maintainerになって, issue, pull requestを 消化したり, 不具合修正をしたり, 新機能追加をしていました. まだ不具合はあるんですが, 区切りがついたということで バージョン 0.5.0をリリースしました. リポジトリ https://github.co…

エラーメッセージのカラー表示に対応しました

coffeescriptを表示させようとしたらエラーがちゃんと表示され なかったので修正しました. これにともない 1.9.7をリリースしました. MELPAからは数時間後ダウンロード可能になると思います. リポジトリ https://github.com/syohex/emacs-quickrun イメージ …

Goの Coverage機能を Emacsから利用する

http://golang.org/doc/go1.2 Go 1.2がリリースされましたが, その中の新機能にカバレッジがあります. この機能を Emacsから活用する機能を紹介します. インストール まずカバレッジツールをインストールします. % go get code.google.com/p/go.tools/cmd/co…