Skip to content

Instantly share code, notes, and snippets.

@momo-lab
Created June 1, 2012 13:53
コマンドを打つときにコロンを付け忘れる派の人のためのearthquake.gem用プラグイン
# -*- coding: utf-8 -*-
# earthquake.gem plugin
# execute command even if you forgot colon
Earthquake.init do
input_filter do |text|
if (command = command(":#{text}")) and confirm("execute :#{text}", :y)
input(":#{text}")
return nil
end
text
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment