update fuzzysearch dep to original repo rather than deleted fork

This commit is contained in:
Felix Angell 2019-05-10 12:34:02 +01:00
parent 5bac7d4766
commit 8a91b542e4
3 changed files with 4 additions and 4 deletions

View File

@ -12,12 +12,12 @@ import (
"time" "time"
"unicode" "unicode"
"github.com/felixangell/fuzzysearch/fuzzy"
"github.com/felixangell/phi/cfg" "github.com/felixangell/phi/cfg"
"github.com/felixangell/phi/gui" "github.com/felixangell/phi/gui"
"github.com/felixangell/phi/lex" "github.com/felixangell/phi/lex"
"github.com/felixangell/phi/piecetable" "github.com/felixangell/phi/piecetable"
"github.com/felixangell/strife" "github.com/felixangell/strife"
"github.com/lithammer/fuzzysearch/fuzzy"
"github.com/veandco/go-sdl2/sdl" "github.com/veandco/go-sdl2/sdl"
) )

View File

@ -4,11 +4,11 @@ import (
"fmt" "fmt"
"strings" "strings"
"github.com/felixangell/fuzzysearch/fuzzy"
"github.com/felixangell/phi/cfg" "github.com/felixangell/phi/cfg"
"github.com/felixangell/phi/gui" "github.com/felixangell/phi/gui"
"github.com/felixangell/phi/lex" "github.com/felixangell/phi/lex"
"github.com/felixangell/strife" "github.com/felixangell/strife"
"github.com/lithammer/fuzzysearch/fuzzy"
"github.com/veandco/go-sdl2/sdl" "github.com/veandco/go-sdl2/sdl"
) )
@ -215,7 +215,7 @@ func (b *CommandPalette) calculateCommandSuggestions() {
suggestions := []suggestion{} suggestions := []suggestion{}
for _, r := range ranks { for _, r := range ranks {
cmdName := commandSet[r.Index] cmdName := commandSet[r.OriginalIndex]
if cmdName == "" { if cmdName == "" {
continue continue
} }
@ -254,7 +254,7 @@ func (b *CommandPalette) calculateSuggestions() {
ranks := fuzzy.RankFind(input, openFiles) ranks := fuzzy.RankFind(input, openFiles)
suggestions := []suggestion{} suggestions := []suggestion{}
for _, r := range ranks { for _, r := range ranks {
pane := b.parent.buffers[r.Index] pane := b.parent.buffers[r.OriginalIndex]
if pane != nil { if pane != nil {
sugg := suggestion{ sugg := suggestion{
b, b,

Binary file not shown.

Before

Width:  |  Height:  |  Size: 802 KiB