mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-11-29 16:23:57 +00:00
Add actions for --bind: select-all / deselect-all / toggle-all
Close #257
This commit is contained in:
parent
1b9b1d15bc
commit
eaa3c67a5e
@ -408,6 +408,12 @@ func parseKeymap(keymap map[int]actionType, toggleSort bool, str string) (map[in
|
|||||||
keymap[key] = actToggleDown
|
keymap[key] = actToggleDown
|
||||||
case "toggle-up":
|
case "toggle-up":
|
||||||
keymap[key] = actToggleUp
|
keymap[key] = actToggleUp
|
||||||
|
case "toggle-all":
|
||||||
|
keymap[key] = actToggleAll
|
||||||
|
case "select-all":
|
||||||
|
keymap[key] = actSelectAll
|
||||||
|
case "deselect-all":
|
||||||
|
keymap[key] = actDeselectAll
|
||||||
case "toggle":
|
case "toggle":
|
||||||
keymap[key] = actToggle
|
keymap[key] = actToggle
|
||||||
case "down":
|
case "down":
|
||||||
|
@ -105,7 +105,10 @@ const (
|
|||||||
actUnixWordRubout
|
actUnixWordRubout
|
||||||
actYank
|
actYank
|
||||||
actBackwardKillWord
|
actBackwardKillWord
|
||||||
|
actSelectAll
|
||||||
|
actDeselectAll
|
||||||
actToggle
|
actToggle
|
||||||
|
actToggleAll
|
||||||
actToggleDown
|
actToggleDown
|
||||||
actToggleUp
|
actToggleUp
|
||||||
actDown
|
actDown
|
||||||
@ -661,20 +664,28 @@ func (t *Terminal) Loop() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
selectItem := func(item *Item) bool {
|
||||||
|
if _, found := t.selected[item.index]; !found {
|
||||||
|
var strptr *string
|
||||||
|
if item.origText != nil {
|
||||||
|
strptr = item.origText
|
||||||
|
} else {
|
||||||
|
strptr = item.text
|
||||||
|
}
|
||||||
|
t.selected[item.index] = selectedItem{time.Now(), strptr}
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
toggleY := func(y int) {
|
||||||
|
item := t.merger.Get(y)
|
||||||
|
if !selectItem(item) {
|
||||||
|
delete(t.selected, item.index)
|
||||||
|
}
|
||||||
|
}
|
||||||
toggle := func() {
|
toggle := func() {
|
||||||
if t.cy < t.merger.Length() {
|
if t.cy < t.merger.Length() {
|
||||||
item := t.merger.Get(t.cy)
|
toggleY(t.cy)
|
||||||
if _, found := t.selected[item.index]; !found {
|
|
||||||
var strptr *string
|
|
||||||
if item.origText != nil {
|
|
||||||
strptr = item.origText
|
|
||||||
} else {
|
|
||||||
strptr = item.text
|
|
||||||
}
|
|
||||||
t.selected[item.index] = selectedItem{time.Now(), strptr}
|
|
||||||
} else {
|
|
||||||
delete(t.selected, item.index)
|
|
||||||
}
|
|
||||||
req(reqInfo)
|
req(reqInfo)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -725,11 +736,34 @@ func (t *Terminal) Loop() {
|
|||||||
t.input = append(t.input[:t.cx-1], t.input[t.cx:]...)
|
t.input = append(t.input[:t.cx-1], t.input[t.cx:]...)
|
||||||
t.cx--
|
t.cx--
|
||||||
}
|
}
|
||||||
|
case actSelectAll:
|
||||||
|
if t.multi {
|
||||||
|
for i := 0; i < t.merger.Length(); i++ {
|
||||||
|
item := t.merger.Get(i)
|
||||||
|
selectItem(item)
|
||||||
|
}
|
||||||
|
req(reqList, reqInfo)
|
||||||
|
}
|
||||||
|
case actDeselectAll:
|
||||||
|
if t.multi {
|
||||||
|
for i := 0; i < t.merger.Length(); i++ {
|
||||||
|
item := t.merger.Get(i)
|
||||||
|
delete(t.selected, item.index)
|
||||||
|
}
|
||||||
|
req(reqList, reqInfo)
|
||||||
|
}
|
||||||
case actToggle:
|
case actToggle:
|
||||||
if t.multi && t.merger.Length() > 0 {
|
if t.multi && t.merger.Length() > 0 {
|
||||||
toggle()
|
toggle()
|
||||||
req(reqList)
|
req(reqList)
|
||||||
}
|
}
|
||||||
|
case actToggleAll:
|
||||||
|
if t.multi {
|
||||||
|
for i := 0; i < t.merger.Length(); i++ {
|
||||||
|
toggleY(i)
|
||||||
|
}
|
||||||
|
req(reqList, reqInfo)
|
||||||
|
}
|
||||||
case actToggleDown:
|
case actToggleDown:
|
||||||
if t.multi && t.merger.Length() > 0 {
|
if t.multi && t.merger.Length() > 0 {
|
||||||
toggle()
|
toggle()
|
||||||
|
@ -543,6 +543,29 @@ class TestGoFZF < TestBase
|
|||||||
assert_equal lines.last, `find . -print0 | #{FZF} --null -e -f "^#{lines.last}$"`.chomp
|
assert_equal lines.last, `find . -print0 | #{FZF} --null -e -f "^#{lines.last}$"`.chomp
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_select_all_deselect_all_toggle_all
|
||||||
|
tmux.send_keys "seq 100 | #{fzf '--bind ctrl-a:select-all,ctrl-d:deselect-all,ctrl-t:toggle-all --multi'}", :Enter
|
||||||
|
tmux.until { |lines| lines[-2].include? '100/100' }
|
||||||
|
tmux.send_keys :BTab, :BTab, :BTab
|
||||||
|
tmux.until { |lines| lines[-2].include? '(3)' }
|
||||||
|
tmux.send_keys 'C-t'
|
||||||
|
tmux.until { |lines| lines[-2].include? '(97)' }
|
||||||
|
tmux.send_keys 'C-a'
|
||||||
|
tmux.until { |lines| lines[-2].include? '(100)' }
|
||||||
|
tmux.send_keys :Tab, :Tab
|
||||||
|
tmux.until { |lines| lines[-2].include? '(98)' }
|
||||||
|
tmux.send_keys 'C-d'
|
||||||
|
tmux.until { |lines| !lines[-2].include? '(' }
|
||||||
|
tmux.send_keys :Tab, :Tab
|
||||||
|
tmux.until { |lines| lines[-2].include? '(2)' }
|
||||||
|
tmux.send_keys 0
|
||||||
|
tmux.until { |lines| lines[-2].include? '10/100' }
|
||||||
|
tmux.send_keys 'C-a'
|
||||||
|
tmux.until { |lines| lines[-2].include? '(12)' }
|
||||||
|
tmux.send_keys :Enter
|
||||||
|
assert_equal %w[2 1 10 20 30 40 50 60 70 80 90 100], readonce.split($/)
|
||||||
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
def writelines path, lines
|
def writelines path, lines
|
||||||
File.unlink path while File.exists? path
|
File.unlink path while File.exists? path
|
||||||
|
Loading…
Reference in New Issue
Block a user