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

[bash] Do not append space when path completion is cancelled

Close #990
This commit is contained in:
Junegunn Choi
2017-07-30 21:51:44 +09:00
parent 1fcc07e54e
commit 376a76d1d3
2 changed files with 18 additions and 4 deletions

View File

@@ -1482,6 +1482,19 @@ module CompletionTest
tmux.send_keys :Enter
end
def test_completion_cancel
%w[ls cd].each do |cmd|
tmux.prepare
tmux.send_keys "#{cmd} **", :Tab
tmux.until { |lines| lines.item_count > 0 }
tmux.send_keys 'C-c'
tmux.until { |lines| lines[-1].include?('**') }
tmux.send_keys 'xoxo'
tmux.until { |lines| lines[-1].include?('**xoxo') }
tmux.send_keys 'C-u'
end
end
def test_dir_completion
(1..100).each do |idx|
FileUtils.mkdir_p "/tmp/fzf-test/d#{idx}"