Sort path completions
This commit is contained in:
parent
d2a18e267c
commit
043a02d99d
|
@ -6,6 +6,7 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
"sort"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
@ -94,6 +95,7 @@ func CompletePath(path string) []string {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sort.Strings(matches)
|
||||||
return matches
|
return matches
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -108,6 +110,7 @@ func CompletePath(path string) []string {
|
||||||
files[i] = f
|
files[i] = f
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sort.Strings(files)
|
||||||
return files
|
return files
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue