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

Fix #135 - Directory completion to append /

This commit is contained in:
Junegunn Choi
2015-03-04 12:59:23 +09:00
parent d4b41c5e03
commit 79c147ed78
2 changed files with 9 additions and 6 deletions

View File

@@ -517,7 +517,9 @@ class TestBash < TestBase
tmux.send_keys 55
tmux.until { |lines| lines[-2].start_with? ' 1/' }
tmux.send_keys :Enter
tmux.until { |lines| lines[-1] == 'cd /tmp/fzf-test/d55' }
tmux.until { |lines| lines[-1] == 'cd /tmp/fzf-test/d55/' }
tmux.send_keys :xx
tmux.until { |lines| lines[-1] == 'cd /tmp/fzf-test/d55/xx' }
end
def test_process_completion