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

Smart-case for each term in extended-search mode

Close #208
This commit is contained in:
Junegunn Choi
2015-04-21 22:18:05 +09:00
parent 3f0e6a5806
commit e82eb27787
2 changed files with 34 additions and 32 deletions

View File

@@ -535,6 +535,10 @@ class TestGoFZF < TestBase
tmux.send_keys :Enter
end
def test_smart_case_for_each_term
assert_equal 1, `echo Foo bar | #{FZF} -x -f "foo Fbar" | wc -l`.to_i
end
private
def writelines path, lines, timeout = 10
File.open(path, 'w') do |f|