m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-18 08:13:40 -05:00

Fix CTRL-Y key binding

With tmux-based test cases
This commit is contained in:
Junegunn Choi
2015-01-17 04:55:29 +09:00
parent 62acb9adc4
commit ae3180f919
6 changed files with 209 additions and 12 deletions

View File

@@ -2,8 +2,11 @@ require "bundler/gem_tasks"
require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
test.pattern = 'test/**/test_*.rb'
test.verbose = true
test.pattern = 'test/test_go.rb'
end
Rake::TestTask.new(:testall) do |test|
test.pattern = 'test/test_*.rb'
end
task :default => :test