2014-09-01から1ヶ月間の記事一覧

vim-cpp-auto-includeを移植してみた

これプロコンで使えそう URL2014-09-24 07:33:48 via TweetDeck @shio_key emacsはないんですかね…2014-09-24 10:04:24 via TweetDeck to @shio_key 元にした Vimのもの https://github.com/quark-zju/vim-cpp-auto-include リポジトリ https://github.com/s…

第四回 init.el読書会に参加しました

第四回は handlername(@handlename)さんでした. リポジトリ https://github.com/handlename/dot-emacs init-loaderの問題は既に修正されています. https://github.com/handlename/dot-emacs/blob/master/init.el#L46 の対応はもう本体に取り込まれているので…

新しいインデントコマンド

https://github.com/defunkt/coffee-mode/tree/improve-else-line-indent 'else'とか, 'catch'とかインデントすべき箇所を決めることが 可能だなということで対応してみました. マージはまだです. 現在のもの 新バージョン Tabを押す回数が減りよいのではな…

isearch-forward-symbol-at-point

Emacs 24.4で追加されたコマンド. 要は Vimの '*'みたいなものです. イメージ 入力する手間が省けます. 設定例 (global-set-key (kbd "C-M-s") 'isearch-forward-symbol-at-point)

第三回 init.el読書会に参加しました

第三回は gongoさん(@gongoZ)さんでした. リポジトリ https://github.com/gongo/elfactory ~/.emacs.dより user-emacs-directoryを使った方がよい https://github.com/gongo/elfactory/blob/master/init.el 前にも書いたけど, 他人が使うことを容易にするた…

Fix case that input regexp matches empty string

searching for \| will go into an infinite loop · Issue #29 · ShingoFukuyama/helm-swoop · GitHub Input regexp which matches empty string(zero width match) has caused infinite loops and hungs up. I fixed this issue. We can use more complex r…

第二回 init.el読書会に参加しました

第二回は yoshitiaさんでした. 以下気になった箇所を示します. (今は直っているかもしれません) default-directoryに設定する値は最後が必ず '/' (let ((default-directory (expand-file-name "~/.emacs.d/elisp"))) (add-to-list 'load-path default-direct…

helm-gtags + go

http://qiita.com/5t111111/items/c14ac68f762ce71a7760#comment-1cc354d91cd042e832c0 GNU Global 6.3.2からの pygmentsパーサのサポートにより, helm-gtagsが使える言語が一気に増えました. 主要な言語は ほぼ OKという感じですね. イメージ go oracleを使…

第一回 init.el読書会に参加しました

一回目は @hico_horiuchiさんの init.elでした. 今はもう修正されているかと思いますが, 当日ツッコミを入れた ところを示します. add-hookに無名関数(lambda)は使わない方がいい add-hookに無名関数を使うと remove-hookできない 2回 add-hookすると, 2個関…

emacs -nwで 24bit color表示をするためのパッチ

開発版 iTerm2や Konsole(KDEの標準ターミナルアプリケーション)でサポートされている ターミナルアプリケーションでの 24bit color表示に対応するためのパッチがあったので 試してみました. 元ネタ http://www.reddit.com/r/emacs/comments/2fj7b4/emacs_tr…

置換コマンドの改善

置換対象の文字列が現在見ることができる範囲にない場合, (存在すれば)その文字列の位置まで移動するようになりました. visual-regexp.elと一緒です. リポジトリ https://github.com/syohex/emacs-anzu イメージ おわりに 問題がありましたら, github issues…

custom matcherの補完に対応

要 Perl 5.14以上ですが, 今どきの環境だとそれ以上のものが 入っていると思いますので, 大丈夫かと思います. リポジトリ https://github.com/syohex/zsh-go-completions イメージ ちゃんと migemo matcherが補完されている