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

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

This reverts commit 376a76d1d3 as it
affects normal completion
This commit is contained in:
Junegunn Choi
2017-07-31 14:08:17 +09:00
parent 376a76d1d3
commit 9d2c6a95f4
2 changed files with 4 additions and 18 deletions

View File

@@ -1482,19 +1482,6 @@ 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}"