Skip to content

Emacs で Cucumber の Feature を編集し易くする feature-mode.el

Posted on:2009年8月17日 at 01:13

Cucumber の Feature の記述を楽にしてくれる elisp。

インストールと設定の例は以下の通り。
($HOME/.emacs.d 配下に追加の elisp は突っ込んでいる。)

$ cd ~/.emacs.d
$ git clone git://github.com/michaelklishin/cucumber.el.git cucumber

.emacs には以下を追加。

(add-to-list 'load-path "~/.emacs.d/cucumber")
(autoload 'feature-mode "feature-mode" "Mode for editing cucumber files" t)
(add-to-list 'auto-mode-alist '("\\.feature$" . feature-mode))

git clone したディレクトリの中に snippets も用意されているので、snipet の laod directory にパスを追加しておく。
yasnippet の設定は、下記のページなどが参考になる。