2015-01-01 19:49:30 +00:00
|
|
|
package fzf
|
|
|
|
|
|
|
|
import (
|
2016-06-11 10:59:12 +00:00
|
|
|
"fmt"
|
2015-01-01 19:49:30 +00:00
|
|
|
"os"
|
|
|
|
"regexp"
|
2015-05-31 07:46:54 +00:00
|
|
|
"strconv"
|
2015-01-01 19:49:30 +00:00
|
|
|
"strings"
|
2015-03-28 17:59:32 +00:00
|
|
|
"unicode/utf8"
|
|
|
|
|
2016-09-07 00:58:18 +00:00
|
|
|
"github.com/junegunn/fzf/src/algo"
|
2016-10-24 00:44:56 +00:00
|
|
|
"github.com/junegunn/fzf/src/tui"
|
2015-01-12 03:56:17 +00:00
|
|
|
|
|
|
|
"github.com/junegunn/go-shellwords"
|
2015-01-01 19:49:30 +00:00
|
|
|
)
|
|
|
|
|
2015-01-11 18:01:24 +00:00
|
|
|
const usage = `usage: fzf [options]
|
2015-01-01 19:49:30 +00:00
|
|
|
|
2015-06-08 14:28:41 +00:00
|
|
|
Search
|
2015-01-01 19:49:30 +00:00
|
|
|
-x, --extended Extended-search mode
|
2015-11-03 13:49:32 +00:00
|
|
|
(enabled by default; +x or --no-extended to disable)
|
|
|
|
-e, --exact Enable Exact-match
|
2016-09-07 00:58:18 +00:00
|
|
|
--algo=TYPE Fuzzy matching algorithm: [v1|v2] (default: v2)
|
2015-01-01 19:49:30 +00:00
|
|
|
-i Case-insensitive match (default: smart-case match)
|
|
|
|
+i Case-sensitive match
|
|
|
|
-n, --nth=N[,..] Comma-separated list of field index expressions
|
|
|
|
for limiting search scope. Each can be a non-zero
|
2015-11-19 00:58:07 +00:00
|
|
|
integer or a range expression ([BEGIN]..[END]).
|
2016-06-11 10:59:12 +00:00
|
|
|
--with-nth=N[,..] Transform the presentation of each line using
|
|
|
|
field index expressions
|
|
|
|
-d, --delimiter=STR Field delimiter regex (default: AWK-style)
|
2015-02-25 16:42:15 +00:00
|
|
|
+s, --no-sort Do not sort the result
|
2015-07-21 16:12:50 +00:00
|
|
|
--tac Reverse the order of the input
|
2016-01-12 18:07:42 +00:00
|
|
|
--tiebreak=CRI[,..] Comma-separated list of sort criteria to apply
|
2016-06-11 10:59:12 +00:00
|
|
|
when the scores are tied [length|begin|end|index]
|
|
|
|
(default: length)
|
2015-01-01 19:49:30 +00:00
|
|
|
|
|
|
|
Interface
|
|
|
|
-m, --multi Enable multi-select with tab/shift-tab
|
2015-07-21 16:12:50 +00:00
|
|
|
--no-mouse Disable mouse
|
2016-06-11 10:59:12 +00:00
|
|
|
--bind=KEYBINDS Custom key bindings. Refer to the man page.
|
2015-07-21 16:12:50 +00:00
|
|
|
--cycle Enable cyclic scroll
|
|
|
|
--no-hscroll Disable horizontal scroll
|
2016-03-01 18:06:21 +00:00
|
|
|
--hscroll-off=COL Number of screen columns to keep to the right of the
|
|
|
|
highlighted substring (default: 10)
|
2016-05-17 17:06:52 +00:00
|
|
|
--jump-labels=CHARS Label characters for jump and jump-accept
|
2016-06-11 10:59:12 +00:00
|
|
|
|
|
|
|
Layout
|
|
|
|
--reverse Reverse orientation
|
|
|
|
--margin=MARGIN Screen margin (TRBL / TB,RL / T,RL,B / T,R,B,L)
|
|
|
|
--inline-info Display finder info inline with the query
|
2015-07-21 16:12:50 +00:00
|
|
|
--prompt=STR Input prompt (default: '> ')
|
2015-09-15 10:04:53 +00:00
|
|
|
--header=STR String to print as header
|
2015-07-21 18:21:20 +00:00
|
|
|
--header-lines=N The first N lines of the input are treated as header
|
2015-01-01 19:49:30 +00:00
|
|
|
|
2016-06-11 10:59:12 +00:00
|
|
|
Display
|
|
|
|
--ansi Enable processing of ANSI color codes
|
|
|
|
--tabstop=SPACES Number of spaces for a tab character (default: 8)
|
|
|
|
--color=COLSPEC Base scheme (dark|light|16|bw) and/or custom colors
|
2016-11-15 14:57:32 +00:00
|
|
|
--no-bold Do not use bold text
|
2016-06-11 10:59:12 +00:00
|
|
|
|
|
|
|
History
|
|
|
|
--history=FILE History file
|
|
|
|
--history-size=N Maximum number of history entries (default: 1000)
|
|
|
|
|
|
|
|
Preview
|
|
|
|
--preview=COMMAND Command to preview highlighted line ({})
|
|
|
|
--preview-window=OPT Preview window layout (default: right:50%)
|
|
|
|
[up|down|left|right][:SIZE[%]][:hidden]
|
|
|
|
|
2015-01-01 19:49:30 +00:00
|
|
|
Scripting
|
|
|
|
-q, --query=STR Start the finder with the given query
|
|
|
|
-1, --select-1 Automatically select the only match
|
|
|
|
-0, --exit-0 Exit immediately when there's no match
|
|
|
|
-f, --filter=STR Filter mode. Do not start interactive finder.
|
2015-07-21 16:12:50 +00:00
|
|
|
--print-query Print query as the first line
|
|
|
|
--expect=KEYS Comma-separated list of keys to complete fzf
|
|
|
|
--sync Synchronous search for multi-staged filtering
|
2015-01-01 19:49:30 +00:00
|
|
|
|
|
|
|
Environment variables
|
|
|
|
FZF_DEFAULT_COMMAND Default command to use when input is tty
|
2015-11-19 00:58:07 +00:00
|
|
|
FZF_DEFAULT_OPTS Default options (e.g. '--reverse --inline-info')
|
2015-01-01 19:49:30 +00:00
|
|
|
|
|
|
|
`
|
|
|
|
|
2015-01-11 18:01:24 +00:00
|
|
|
// Case denotes case-sensitivity of search
|
2015-01-01 19:49:30 +00:00
|
|
|
type Case int
|
|
|
|
|
2015-01-11 18:01:24 +00:00
|
|
|
// Case-sensitivities
|
2015-01-01 19:49:30 +00:00
|
|
|
const (
|
2015-01-11 18:01:24 +00:00
|
|
|
CaseSmart Case = iota
|
|
|
|
CaseIgnore
|
|
|
|
CaseRespect
|
2015-01-01 19:49:30 +00:00
|
|
|
)
|
|
|
|
|
2015-04-16 05:19:28 +00:00
|
|
|
// Sort criteria
|
2016-01-12 18:07:42 +00:00
|
|
|
type criterion int
|
2015-04-16 05:19:28 +00:00
|
|
|
|
|
|
|
const (
|
2016-09-07 00:58:18 +00:00
|
|
|
byScore criterion = iota
|
2016-01-12 18:07:42 +00:00
|
|
|
byLength
|
2015-04-16 05:19:28 +00:00
|
|
|
byBegin
|
|
|
|
byEnd
|
|
|
|
)
|
|
|
|
|
2016-06-11 10:59:12 +00:00
|
|
|
type sizeSpec struct {
|
|
|
|
size float64
|
|
|
|
percent bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func defaultMargin() [4]sizeSpec {
|
|
|
|
return [4]sizeSpec{}
|
|
|
|
}
|
|
|
|
|
|
|
|
type windowPosition int
|
|
|
|
|
|
|
|
const (
|
|
|
|
posUp windowPosition = iota
|
|
|
|
posDown
|
|
|
|
posLeft
|
|
|
|
posRight
|
|
|
|
)
|
|
|
|
|
|
|
|
type previewOpts struct {
|
|
|
|
command string
|
|
|
|
position windowPosition
|
|
|
|
size sizeSpec
|
|
|
|
hidden bool
|
2015-07-26 14:02:04 +00:00
|
|
|
}
|
|
|
|
|
2015-01-11 18:01:24 +00:00
|
|
|
// Options stores the values of command-line options
|
2015-01-01 19:49:30 +00:00
|
|
|
type Options struct {
|
2015-11-03 13:49:32 +00:00
|
|
|
Fuzzy bool
|
2016-09-07 00:58:18 +00:00
|
|
|
FuzzyAlgo algo.Algo
|
2015-11-03 13:49:32 +00:00
|
|
|
Extended bool
|
2015-07-21 18:21:20 +00:00
|
|
|
Case Case
|
|
|
|
Nth []Range
|
|
|
|
WithNth []Range
|
2015-08-10 09:34:20 +00:00
|
|
|
Delimiter Delimiter
|
2015-07-21 18:21:20 +00:00
|
|
|
Sort int
|
|
|
|
Tac bool
|
2016-01-12 18:07:42 +00:00
|
|
|
Criteria []criterion
|
2015-07-21 18:21:20 +00:00
|
|
|
Multi bool
|
|
|
|
Ansi bool
|
|
|
|
Mouse bool
|
2016-10-24 00:44:56 +00:00
|
|
|
Theme *tui.ColorTheme
|
2015-07-21 18:21:20 +00:00
|
|
|
Black bool
|
2016-11-15 14:57:32 +00:00
|
|
|
Bold bool
|
2015-07-21 18:21:20 +00:00
|
|
|
Reverse bool
|
|
|
|
Cycle bool
|
|
|
|
Hscroll bool
|
2016-03-01 18:06:21 +00:00
|
|
|
HscrollOff int
|
2015-07-21 18:21:20 +00:00
|
|
|
InlineInfo bool
|
2016-05-17 17:06:52 +00:00
|
|
|
JumpLabels string
|
2015-07-21 18:21:20 +00:00
|
|
|
Prompt string
|
|
|
|
Query string
|
|
|
|
Select1 bool
|
|
|
|
Exit0 bool
|
|
|
|
Filter *string
|
|
|
|
ToggleSort bool
|
|
|
|
Expect map[int]string
|
|
|
|
Keymap map[int]actionType
|
|
|
|
Execmap map[int]string
|
2016-06-11 10:59:12 +00:00
|
|
|
Preview previewOpts
|
2015-07-21 18:21:20 +00:00
|
|
|
PrintQuery bool
|
|
|
|
ReadZero bool
|
2016-09-17 19:52:47 +00:00
|
|
|
Printer func(string)
|
2015-07-21 18:21:20 +00:00
|
|
|
Sync bool
|
|
|
|
History *History
|
|
|
|
Header []string
|
|
|
|
HeaderLines int
|
2016-06-11 10:59:12 +00:00
|
|
|
Margin [4]sizeSpec
|
2015-11-30 08:35:03 +00:00
|
|
|
Tabstop int
|
2015-07-21 18:21:20 +00:00
|
|
|
Version bool
|
2015-01-01 19:49:30 +00:00
|
|
|
}
|
|
|
|
|
2015-05-31 07:46:54 +00:00
|
|
|
func defaultOptions() *Options {
|
2015-01-01 19:49:30 +00:00
|
|
|
return &Options{
|
2015-11-03 13:49:32 +00:00
|
|
|
Fuzzy: true,
|
2016-09-07 00:58:18 +00:00
|
|
|
FuzzyAlgo: algo.FuzzyMatchV2,
|
2015-11-03 13:49:32 +00:00
|
|
|
Extended: true,
|
2015-07-21 18:21:20 +00:00
|
|
|
Case: CaseSmart,
|
|
|
|
Nth: make([]Range, 0),
|
|
|
|
WithNth: make([]Range, 0),
|
2015-08-10 09:34:20 +00:00
|
|
|
Delimiter: Delimiter{},
|
2015-07-21 18:21:20 +00:00
|
|
|
Sort: 1000,
|
|
|
|
Tac: false,
|
2016-09-07 00:58:18 +00:00
|
|
|
Criteria: []criterion{byScore, byLength},
|
2015-07-21 18:21:20 +00:00
|
|
|
Multi: false,
|
|
|
|
Ansi: false,
|
|
|
|
Mouse: true,
|
2016-10-24 00:44:56 +00:00
|
|
|
Theme: tui.EmptyTheme(),
|
2015-07-21 18:21:20 +00:00
|
|
|
Black: false,
|
2016-11-15 14:57:32 +00:00
|
|
|
Bold: true,
|
2015-07-21 18:21:20 +00:00
|
|
|
Reverse: false,
|
|
|
|
Cycle: false,
|
|
|
|
Hscroll: true,
|
2016-03-01 18:06:21 +00:00
|
|
|
HscrollOff: 10,
|
2015-07-21 18:21:20 +00:00
|
|
|
InlineInfo: false,
|
2016-05-17 17:06:52 +00:00
|
|
|
JumpLabels: defaultJumpLabels,
|
2015-07-21 18:21:20 +00:00
|
|
|
Prompt: "> ",
|
|
|
|
Query: "",
|
|
|
|
Select1: false,
|
|
|
|
Exit0: false,
|
|
|
|
Filter: nil,
|
|
|
|
ToggleSort: false,
|
|
|
|
Expect: make(map[int]string),
|
2016-02-17 16:46:18 +00:00
|
|
|
Keymap: make(map[int]actionType),
|
2015-07-21 18:21:20 +00:00
|
|
|
Execmap: make(map[int]string),
|
2016-06-11 10:59:12 +00:00
|
|
|
Preview: previewOpts{"", posRight, sizeSpec{50, true}, false},
|
2015-07-21 18:21:20 +00:00
|
|
|
PrintQuery: false,
|
|
|
|
ReadZero: false,
|
2016-09-17 19:52:47 +00:00
|
|
|
Printer: func(str string) { fmt.Println(str) },
|
2015-07-21 18:21:20 +00:00
|
|
|
Sync: false,
|
|
|
|
History: nil,
|
|
|
|
Header: make([]string, 0),
|
|
|
|
HeaderLines: 0,
|
2015-07-26 14:02:04 +00:00
|
|
|
Margin: defaultMargin(),
|
2015-11-30 08:35:03 +00:00
|
|
|
Tabstop: 8,
|
2015-07-21 18:21:20 +00:00
|
|
|
Version: false}
|
2015-01-01 19:49:30 +00:00
|
|
|
}
|
|
|
|
|
2015-09-15 04:21:51 +00:00
|
|
|
func help(code int) {
|
2015-01-11 18:01:24 +00:00
|
|
|
os.Stderr.WriteString(usage)
|
2015-09-15 04:21:51 +00:00
|
|
|
os.Exit(code)
|
2015-01-01 19:49:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func errorExit(msg string) {
|
|
|
|
os.Stderr.WriteString(msg + "\n")
|
2015-09-15 04:21:51 +00:00
|
|
|
os.Exit(exitError)
|
2015-01-01 19:49:30 +00:00
|
|
|
}
|
|
|
|
|
2015-06-14 02:23:07 +00:00
|
|
|
func optString(arg string, prefixes ...string) (bool, string) {
|
|
|
|
for _, prefix := range prefixes {
|
|
|
|
if strings.HasPrefix(arg, prefix) {
|
|
|
|
return true, arg[len(prefix):]
|
|
|
|
}
|
2015-01-01 19:49:30 +00:00
|
|
|
}
|
2015-01-11 18:01:24 +00:00
|
|
|
return false, ""
|
2015-01-01 19:49:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func nextString(args []string, i *int, message string) string {
|
|
|
|
if len(args) > *i+1 {
|
|
|
|
*i++
|
|
|
|
} else {
|
|
|
|
errorExit(message)
|
|
|
|
}
|
|
|
|
return args[*i]
|
|
|
|
}
|
|
|
|
|
2015-05-31 07:46:54 +00:00
|
|
|
func optionalNextString(args []string, i *int) string {
|
2016-10-21 10:20:00 +00:00
|
|
|
if len(args) > *i+1 && !strings.HasPrefix(args[*i+1], "-") {
|
2015-05-31 07:46:54 +00:00
|
|
|
*i++
|
|
|
|
return args[*i]
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2015-06-13 15:43:44 +00:00
|
|
|
func atoi(str string) int {
|
|
|
|
num, err := strconv.Atoi(str)
|
|
|
|
if err != nil {
|
|
|
|
errorExit("not a valid integer: " + str)
|
|
|
|
}
|
|
|
|
return num
|
|
|
|
}
|
|
|
|
|
2015-07-26 14:02:04 +00:00
|
|
|
func atof(str string) float64 {
|
|
|
|
num, err := strconv.ParseFloat(str, 64)
|
|
|
|
if err != nil {
|
|
|
|
errorExit("not a valid number: " + str)
|
|
|
|
}
|
|
|
|
return num
|
|
|
|
}
|
|
|
|
|
2015-06-13 15:43:44 +00:00
|
|
|
func nextInt(args []string, i *int, message string) int {
|
|
|
|
if len(args) > *i+1 {
|
|
|
|
*i++
|
|
|
|
} else {
|
|
|
|
errorExit(message)
|
|
|
|
}
|
|
|
|
return atoi(args[*i])
|
|
|
|
}
|
|
|
|
|
2015-01-01 19:49:30 +00:00
|
|
|
func optionalNumeric(args []string, i *int) int {
|
|
|
|
if len(args) > *i+1 {
|
|
|
|
if strings.IndexAny(args[*i+1], "0123456789") == 0 {
|
|
|
|
*i++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 1 // Don't care
|
|
|
|
}
|
|
|
|
|
|
|
|
func splitNth(str string) []Range {
|
|
|
|
if match, _ := regexp.MatchString("^[0-9,-.]+$", str); !match {
|
|
|
|
errorExit("invalid format: " + str)
|
|
|
|
}
|
|
|
|
|
|
|
|
tokens := strings.Split(str, ",")
|
|
|
|
ranges := make([]Range, len(tokens))
|
|
|
|
for idx, s := range tokens {
|
|
|
|
r, ok := ParseRange(&s)
|
|
|
|
if !ok {
|
|
|
|
errorExit("invalid format: " + str)
|
|
|
|
}
|
|
|
|
ranges[idx] = r
|
|
|
|
}
|
|
|
|
return ranges
|
|
|
|
}
|
|
|
|
|
2015-08-10 09:34:20 +00:00
|
|
|
func delimiterRegexp(str string) Delimiter {
|
|
|
|
// Special handling of \t
|
|
|
|
str = strings.Replace(str, "\\t", "\t", -1)
|
|
|
|
|
|
|
|
// 1. Pattern does not contain any special character
|
|
|
|
if regexp.QuoteMeta(str) == str {
|
|
|
|
return Delimiter{str: &str}
|
|
|
|
}
|
|
|
|
|
2015-01-01 19:49:30 +00:00
|
|
|
rx, e := regexp.Compile(str)
|
2015-08-10 09:34:20 +00:00
|
|
|
// 2. Pattern is not a valid regular expression
|
2015-01-01 19:49:30 +00:00
|
|
|
if e != nil {
|
2015-08-10 09:34:20 +00:00
|
|
|
return Delimiter{str: &str}
|
2015-01-01 19:49:30 +00:00
|
|
|
}
|
|
|
|
|
2015-08-10 09:34:20 +00:00
|
|
|
// 3. Pattern as regular expression. Slow.
|
|
|
|
return Delimiter{regex: rx}
|
2015-01-01 19:49:30 +00:00
|
|
|
}
|
|
|
|
|
2015-03-28 17:59:32 +00:00
|
|
|
func isAlphabet(char uint8) bool {
|
|
|
|
return char >= 'a' && char <= 'z'
|
|
|
|
}
|
|
|
|
|
2016-11-19 13:40:28 +00:00
|
|
|
func isNumeric(char uint8) bool {
|
|
|
|
return char >= '0' && char <= '9'
|
|
|
|
}
|
|
|
|
|
2016-09-07 00:58:18 +00:00
|
|
|
func parseAlgo(str string) algo.Algo {
|
|
|
|
switch str {
|
|
|
|
case "v1":
|
|
|
|
return algo.FuzzyMatchV1
|
|
|
|
case "v2":
|
|
|
|
return algo.FuzzyMatchV2
|
|
|
|
default:
|
|
|
|
errorExit("invalid algorithm (expected: v1 or v2)")
|
|
|
|
}
|
|
|
|
return algo.FuzzyMatchV2
|
|
|
|
}
|
|
|
|
|
2015-06-18 15:31:48 +00:00
|
|
|
func parseKeyChords(str string, message string) map[int]string {
|
2015-03-31 13:05:02 +00:00
|
|
|
if len(str) == 0 {
|
|
|
|
errorExit(message)
|
|
|
|
}
|
|
|
|
|
|
|
|
tokens := strings.Split(str, ",")
|
|
|
|
if str == "," || strings.HasPrefix(str, ",,") || strings.HasSuffix(str, ",,") || strings.Index(str, ",,,") >= 0 {
|
|
|
|
tokens = append(tokens, ",")
|
|
|
|
}
|
|
|
|
|
2015-06-18 15:31:48 +00:00
|
|
|
chords := make(map[int]string)
|
2015-03-31 13:05:02 +00:00
|
|
|
for _, key := range tokens {
|
|
|
|
if len(key) == 0 {
|
|
|
|
continue // ignore
|
|
|
|
}
|
2015-03-28 17:59:32 +00:00
|
|
|
lkey := strings.ToLower(key)
|
2015-06-14 16:26:18 +00:00
|
|
|
chord := 0
|
2015-06-18 15:31:48 +00:00
|
|
|
switch lkey {
|
|
|
|
case "up":
|
2016-10-24 00:44:56 +00:00
|
|
|
chord = tui.Up
|
2015-06-18 15:31:48 +00:00
|
|
|
case "down":
|
2016-10-24 00:44:56 +00:00
|
|
|
chord = tui.Down
|
2015-06-18 15:31:48 +00:00
|
|
|
case "left":
|
2016-10-24 00:44:56 +00:00
|
|
|
chord = tui.Left
|
2015-06-18 15:31:48 +00:00
|
|
|
case "right":
|
2016-10-24 00:44:56 +00:00
|
|
|
chord = tui.Right
|
2015-06-18 15:31:48 +00:00
|
|
|
case "enter", "return":
|
2016-10-24 00:44:56 +00:00
|
|
|
chord = tui.CtrlM
|
2015-06-18 15:31:48 +00:00
|
|
|
case "space":
|
2016-10-24 00:44:56 +00:00
|
|
|
chord = tui.AltZ + int(' ')
|
2015-06-18 15:31:48 +00:00
|
|
|
case "bspace", "bs":
|
2016-10-24 00:44:56 +00:00
|
|
|
chord = tui.BSpace
|
2016-05-12 15:36:13 +00:00
|
|
|
case "alt-enter", "alt-return":
|
2016-10-24 00:44:56 +00:00
|
|
|
chord = tui.AltEnter
|
2016-05-12 15:36:13 +00:00
|
|
|
case "alt-space":
|
2016-10-24 00:44:56 +00:00
|
|
|
chord = tui.AltSpace
|
2016-05-18 13:25:09 +00:00
|
|
|
case "alt-/":
|
2016-10-24 00:44:56 +00:00
|
|
|
chord = tui.AltSlash
|
2015-06-18 15:31:48 +00:00
|
|
|
case "alt-bs", "alt-bspace":
|
2016-10-24 00:44:56 +00:00
|
|
|
chord = tui.AltBS
|
2015-06-18 15:31:48 +00:00
|
|
|
case "tab":
|
2016-10-24 00:44:56 +00:00
|
|
|
chord = tui.Tab
|
2015-06-18 15:31:48 +00:00
|
|
|
case "btab", "shift-tab":
|
2016-10-24 00:44:56 +00:00
|
|
|
chord = tui.BTab
|
2015-06-18 15:31:48 +00:00
|
|
|
case "esc":
|
2016-10-24 00:44:56 +00:00
|
|
|
chord = tui.ESC
|
2015-06-18 15:31:48 +00:00
|
|
|
case "del":
|
2016-10-24 00:44:56 +00:00
|
|
|
chord = tui.Del
|
2015-06-18 15:31:48 +00:00
|
|
|
case "home":
|
2016-10-24 00:44:56 +00:00
|
|
|
chord = tui.Home
|
2015-06-18 15:31:48 +00:00
|
|
|
case "end":
|
2016-10-24 00:44:56 +00:00
|
|
|
chord = tui.End
|
2015-06-18 15:31:48 +00:00
|
|
|
case "pgup", "page-up":
|
2016-10-24 00:44:56 +00:00
|
|
|
chord = tui.PgUp
|
2015-06-18 15:31:48 +00:00
|
|
|
case "pgdn", "page-down":
|
2016-10-24 00:44:56 +00:00
|
|
|
chord = tui.PgDn
|
2015-06-18 15:31:48 +00:00
|
|
|
case "shift-left":
|
2016-10-24 00:44:56 +00:00
|
|
|
chord = tui.SLeft
|
2015-06-18 15:31:48 +00:00
|
|
|
case "shift-right":
|
2016-10-24 00:44:56 +00:00
|
|
|
chord = tui.SRight
|
2015-10-12 17:24:38 +00:00
|
|
|
case "double-click":
|
2016-10-24 00:44:56 +00:00
|
|
|
chord = tui.DoubleClick
|
2016-05-18 13:25:09 +00:00
|
|
|
case "f10":
|
2016-10-24 00:44:56 +00:00
|
|
|
chord = tui.F10
|
2016-11-19 13:40:28 +00:00
|
|
|
case "f11":
|
|
|
|
chord = tui.F11
|
|
|
|
case "f12":
|
|
|
|
chord = tui.F12
|
2015-06-18 15:31:48 +00:00
|
|
|
default:
|
2015-06-14 16:26:18 +00:00
|
|
|
if len(key) == 6 && strings.HasPrefix(lkey, "ctrl-") && isAlphabet(lkey[5]) {
|
2016-10-24 00:44:56 +00:00
|
|
|
chord = tui.CtrlA + int(lkey[5]) - 'a'
|
2015-06-14 16:26:18 +00:00
|
|
|
} else if len(key) == 5 && strings.HasPrefix(lkey, "alt-") && isAlphabet(lkey[4]) {
|
2016-10-24 00:44:56 +00:00
|
|
|
chord = tui.AltA + int(lkey[4]) - 'a'
|
2016-11-19 13:40:28 +00:00
|
|
|
} else if len(key) == 5 && strings.HasPrefix(lkey, "alt-") && isNumeric(lkey[4]) {
|
|
|
|
chord = tui.Alt0 + int(lkey[4]) - '0'
|
2016-05-18 13:25:09 +00:00
|
|
|
} else if len(key) == 2 && strings.HasPrefix(lkey, "f") && key[1] >= '1' && key[1] <= '9' {
|
2016-10-24 00:44:56 +00:00
|
|
|
chord = tui.F1 + int(key[1]) - '1'
|
2015-06-14 16:26:18 +00:00
|
|
|
} else if utf8.RuneCountInString(key) == 1 {
|
2016-10-24 00:44:56 +00:00
|
|
|
chord = tui.AltZ + int([]rune(key)[0])
|
2015-06-14 16:26:18 +00:00
|
|
|
} else {
|
|
|
|
errorExit("unsupported key: " + key)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if chord > 0 {
|
2015-06-18 15:31:48 +00:00
|
|
|
chords[chord] = key
|
2015-03-28 17:59:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return chords
|
|
|
|
}
|
|
|
|
|
2016-01-12 18:07:42 +00:00
|
|
|
func parseTiebreak(str string) []criterion {
|
2016-09-07 00:58:18 +00:00
|
|
|
criteria := []criterion{byScore}
|
2016-01-12 18:07:42 +00:00
|
|
|
hasIndex := false
|
|
|
|
hasLength := false
|
|
|
|
hasBegin := false
|
|
|
|
hasEnd := false
|
|
|
|
check := func(notExpected *bool, name string) {
|
|
|
|
if *notExpected {
|
|
|
|
errorExit("duplicate sort criteria: " + name)
|
|
|
|
}
|
|
|
|
if hasIndex {
|
|
|
|
errorExit("index should be the last criterion")
|
|
|
|
}
|
|
|
|
*notExpected = true
|
|
|
|
}
|
|
|
|
for _, str := range strings.Split(strings.ToLower(str), ",") {
|
|
|
|
switch str {
|
|
|
|
case "index":
|
|
|
|
check(&hasIndex, "index")
|
|
|
|
case "length":
|
|
|
|
check(&hasLength, "length")
|
|
|
|
criteria = append(criteria, byLength)
|
|
|
|
case "begin":
|
|
|
|
check(&hasBegin, "begin")
|
|
|
|
criteria = append(criteria, byBegin)
|
|
|
|
case "end":
|
|
|
|
check(&hasEnd, "end")
|
|
|
|
criteria = append(criteria, byEnd)
|
|
|
|
default:
|
|
|
|
errorExit("invalid sort criterion: " + str)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return criteria
|
2015-04-16 05:19:28 +00:00
|
|
|
}
|
|
|
|
|
2016-10-24 00:44:56 +00:00
|
|
|
func dupeTheme(theme *tui.ColorTheme) *tui.ColorTheme {
|
2015-10-09 03:16:47 +00:00
|
|
|
if theme != nil {
|
|
|
|
dupe := *theme
|
|
|
|
return &dupe
|
|
|
|
}
|
|
|
|
return nil
|
2015-05-31 07:46:54 +00:00
|
|
|
}
|
|
|
|
|
2016-10-24 00:44:56 +00:00
|
|
|
func parseTheme(defaultTheme *tui.ColorTheme, str string) *tui.ColorTheme {
|
2015-05-31 07:46:54 +00:00
|
|
|
theme := dupeTheme(defaultTheme)
|
|
|
|
for _, str := range strings.Split(strings.ToLower(str), ",") {
|
|
|
|
switch str {
|
|
|
|
case "dark":
|
2016-10-24 00:44:56 +00:00
|
|
|
theme = dupeTheme(tui.Dark256)
|
2015-05-31 07:46:54 +00:00
|
|
|
case "light":
|
2016-10-24 00:44:56 +00:00
|
|
|
theme = dupeTheme(tui.Light256)
|
2015-05-31 07:46:54 +00:00
|
|
|
case "16":
|
2016-10-24 00:44:56 +00:00
|
|
|
theme = dupeTheme(tui.Default16)
|
2015-05-31 07:46:54 +00:00
|
|
|
case "bw", "no":
|
|
|
|
theme = nil
|
|
|
|
default:
|
|
|
|
fail := func() {
|
|
|
|
errorExit("invalid color specification: " + str)
|
|
|
|
}
|
|
|
|
// Color is disabled
|
|
|
|
if theme == nil {
|
2015-10-09 03:16:47 +00:00
|
|
|
continue
|
2015-05-31 07:46:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pair := strings.Split(str, ":")
|
|
|
|
if len(pair) != 2 {
|
|
|
|
fail()
|
|
|
|
}
|
|
|
|
ansi32, err := strconv.Atoi(pair[1])
|
|
|
|
if err != nil || ansi32 < -1 || ansi32 > 255 {
|
|
|
|
fail()
|
|
|
|
}
|
2016-10-24 00:44:56 +00:00
|
|
|
ansi := tui.Color(ansi32)
|
2015-05-31 07:46:54 +00:00
|
|
|
switch pair[0] {
|
|
|
|
case "fg":
|
|
|
|
theme.Fg = ansi
|
|
|
|
case "bg":
|
|
|
|
theme.Bg = ansi
|
|
|
|
case "fg+":
|
|
|
|
theme.Current = ansi
|
|
|
|
case "bg+":
|
|
|
|
theme.DarkBg = ansi
|
|
|
|
case "hl":
|
|
|
|
theme.Match = ansi
|
|
|
|
case "hl+":
|
|
|
|
theme.CurrentMatch = ansi
|
2016-06-11 10:59:12 +00:00
|
|
|
case "border":
|
|
|
|
theme.Border = ansi
|
2015-05-31 07:46:54 +00:00
|
|
|
case "prompt":
|
|
|
|
theme.Prompt = ansi
|
|
|
|
case "spinner":
|
|
|
|
theme.Spinner = ansi
|
|
|
|
case "info":
|
|
|
|
theme.Info = ansi
|
|
|
|
case "pointer":
|
|
|
|
theme.Cursor = ansi
|
|
|
|
case "marker":
|
|
|
|
theme.Selected = ansi
|
2015-07-21 15:19:37 +00:00
|
|
|
case "header":
|
|
|
|
theme.Header = ansi
|
2015-05-31 07:46:54 +00:00
|
|
|
default:
|
|
|
|
fail()
|
|
|
|
}
|
|
|
|
}
|
2015-04-17 17:52:30 +00:00
|
|
|
}
|
2015-05-31 07:46:54 +00:00
|
|
|
return theme
|
2015-04-17 17:52:30 +00:00
|
|
|
}
|
|
|
|
|
2015-06-14 14:36:49 +00:00
|
|
|
var executeRegexp *regexp.Regexp
|
|
|
|
|
2015-06-18 15:31:48 +00:00
|
|
|
func firstKey(keymap map[int]string) int {
|
|
|
|
for k := range keymap {
|
|
|
|
return k
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2015-07-16 10:18:23 +00:00
|
|
|
const (
|
|
|
|
escapedColon = 0
|
|
|
|
escapedComma = 1
|
|
|
|
)
|
|
|
|
|
2016-02-17 16:46:18 +00:00
|
|
|
func parseKeymap(keymap map[int]actionType, execmap map[int]string, str string) {
|
2015-06-14 14:36:49 +00:00
|
|
|
if executeRegexp == nil {
|
|
|
|
// Backreferences are not supported.
|
2015-06-15 14:25:00 +00:00
|
|
|
// "~!@#$%^&*;/|".each_char.map { |c| Regexp.escape(c) }.map { |c| "#{c}[^#{c}]*#{c}" }.join('|')
|
2015-06-14 14:36:49 +00:00
|
|
|
executeRegexp = regexp.MustCompile(
|
2015-11-08 16:42:01 +00:00
|
|
|
"(?s):execute(-multi)?:.*|:execute(-multi)?(\\([^)]*\\)|\\[[^\\]]*\\]|~[^~]*~|![^!]*!|@[^@]*@|\\#[^\\#]*\\#|\\$[^\\$]*\\$|%[^%]*%|\\^[^\\^]*\\^|&[^&]*&|\\*[^\\*]*\\*|;[^;]*;|/[^/]*/|\\|[^\\|]*\\|)")
|
2015-06-14 14:36:49 +00:00
|
|
|
}
|
|
|
|
masked := executeRegexp.ReplaceAllStringFunc(str, func(src string) string {
|
2015-11-08 16:42:01 +00:00
|
|
|
if strings.HasPrefix(src, ":execute-multi") {
|
|
|
|
return ":execute-multi(" + strings.Repeat(" ", len(src)-len(":execute-multi()")) + ")"
|
|
|
|
}
|
|
|
|
return ":execute(" + strings.Repeat(" ", len(src)-len(":execute()")) + ")"
|
2015-06-14 03:25:08 +00:00
|
|
|
})
|
2015-07-16 10:18:23 +00:00
|
|
|
masked = strings.Replace(masked, "::", string([]rune{escapedColon, ':'}), -1)
|
|
|
|
masked = strings.Replace(masked, ",:", string([]rune{escapedComma, ':'}), -1)
|
2015-06-14 03:25:08 +00:00
|
|
|
|
|
|
|
idx := 0
|
|
|
|
for _, pairStr := range strings.Split(masked, ",") {
|
2015-07-16 10:18:23 +00:00
|
|
|
origPairStr := str[idx : idx+len(pairStr)]
|
2015-06-14 03:25:08 +00:00
|
|
|
idx += len(pairStr) + 1
|
|
|
|
|
|
|
|
pair := strings.SplitN(pairStr, ":", 2)
|
2015-07-17 17:31:35 +00:00
|
|
|
if len(pair) < 2 {
|
|
|
|
errorExit("bind action not specified: " + origPairStr)
|
2015-05-20 12:25:15 +00:00
|
|
|
}
|
2015-07-16 10:18:23 +00:00
|
|
|
var key int
|
|
|
|
if len(pair[0]) == 1 && pair[0][0] == escapedColon {
|
2016-10-24 00:44:56 +00:00
|
|
|
key = ':' + tui.AltZ
|
2015-07-16 10:18:23 +00:00
|
|
|
} else if len(pair[0]) == 1 && pair[0][0] == escapedComma {
|
2016-10-24 00:44:56 +00:00
|
|
|
key = ',' + tui.AltZ
|
2015-07-16 10:18:23 +00:00
|
|
|
} else {
|
|
|
|
keys := parseKeyChords(pair[0], "key name required")
|
|
|
|
key = firstKey(keys)
|
2015-05-20 12:25:15 +00:00
|
|
|
}
|
2015-07-16 10:18:23 +00:00
|
|
|
|
|
|
|
act := origPairStr[len(pair[0])+1 : len(origPairStr)]
|
|
|
|
actLower := strings.ToLower(act)
|
|
|
|
switch actLower {
|
2015-06-13 16:54:56 +00:00
|
|
|
case "ignore":
|
|
|
|
keymap[key] = actIgnore
|
2015-05-20 12:25:15 +00:00
|
|
|
case "beginning-of-line":
|
|
|
|
keymap[key] = actBeginningOfLine
|
|
|
|
case "abort":
|
|
|
|
keymap[key] = actAbort
|
|
|
|
case "accept":
|
|
|
|
keymap[key] = actAccept
|
2016-05-12 15:51:15 +00:00
|
|
|
case "print-query":
|
|
|
|
keymap[key] = actPrintQuery
|
2015-05-20 12:25:15 +00:00
|
|
|
case "backward-char":
|
|
|
|
keymap[key] = actBackwardChar
|
|
|
|
case "backward-delete-char":
|
|
|
|
keymap[key] = actBackwardDeleteChar
|
|
|
|
case "backward-word":
|
|
|
|
keymap[key] = actBackwardWord
|
|
|
|
case "clear-screen":
|
|
|
|
keymap[key] = actClearScreen
|
|
|
|
case "delete-char":
|
|
|
|
keymap[key] = actDeleteChar
|
2015-07-22 15:56:03 +00:00
|
|
|
case "delete-char/eof":
|
2015-08-02 04:06:15 +00:00
|
|
|
keymap[key] = actDeleteCharEOF
|
2015-05-20 12:25:15 +00:00
|
|
|
case "end-of-line":
|
|
|
|
keymap[key] = actEndOfLine
|
2015-07-23 12:05:33 +00:00
|
|
|
case "cancel":
|
|
|
|
keymap[key] = actCancel
|
2015-05-20 12:25:15 +00:00
|
|
|
case "forward-char":
|
|
|
|
keymap[key] = actForwardChar
|
|
|
|
case "forward-word":
|
|
|
|
keymap[key] = actForwardWord
|
2016-05-17 17:06:52 +00:00
|
|
|
case "jump":
|
|
|
|
keymap[key] = actJump
|
|
|
|
case "jump-accept":
|
|
|
|
keymap[key] = actJumpAccept
|
2015-05-20 12:25:15 +00:00
|
|
|
case "kill-line":
|
|
|
|
keymap[key] = actKillLine
|
|
|
|
case "kill-word":
|
|
|
|
keymap[key] = actKillWord
|
|
|
|
case "unix-line-discard", "line-discard":
|
|
|
|
keymap[key] = actUnixLineDiscard
|
|
|
|
case "unix-word-rubout", "word-rubout":
|
|
|
|
keymap[key] = actUnixWordRubout
|
|
|
|
case "yank":
|
|
|
|
keymap[key] = actYank
|
|
|
|
case "backward-kill-word":
|
|
|
|
keymap[key] = actBackwardKillWord
|
|
|
|
case "toggle-down":
|
|
|
|
keymap[key] = actToggleDown
|
|
|
|
case "toggle-up":
|
|
|
|
keymap[key] = actToggleUp
|
2016-01-13 17:35:43 +00:00
|
|
|
case "toggle-in":
|
|
|
|
keymap[key] = actToggleIn
|
|
|
|
case "toggle-out":
|
|
|
|
keymap[key] = actToggleOut
|
2015-06-09 14:44:54 +00:00
|
|
|
case "toggle-all":
|
|
|
|
keymap[key] = actToggleAll
|
|
|
|
case "select-all":
|
|
|
|
keymap[key] = actSelectAll
|
|
|
|
case "deselect-all":
|
|
|
|
keymap[key] = actDeselectAll
|
2015-05-20 16:35:35 +00:00
|
|
|
case "toggle":
|
|
|
|
keymap[key] = actToggle
|
2015-05-20 12:25:15 +00:00
|
|
|
case "down":
|
|
|
|
keymap[key] = actDown
|
|
|
|
case "up":
|
|
|
|
keymap[key] = actUp
|
|
|
|
case "page-up":
|
|
|
|
keymap[key] = actPageUp
|
|
|
|
case "page-down":
|
|
|
|
keymap[key] = actPageDown
|
2015-06-13 15:43:44 +00:00
|
|
|
case "previous-history":
|
|
|
|
keymap[key] = actPreviousHistory
|
|
|
|
case "next-history":
|
|
|
|
keymap[key] = actNextHistory
|
2016-06-11 10:59:12 +00:00
|
|
|
case "toggle-preview":
|
|
|
|
keymap[key] = actTogglePreview
|
2015-05-20 12:25:15 +00:00
|
|
|
case "toggle-sort":
|
|
|
|
keymap[key] = actToggleSort
|
2016-09-24 17:02:00 +00:00
|
|
|
case "preview-up":
|
|
|
|
keymap[key] = actPreviewUp
|
|
|
|
case "preview-down":
|
|
|
|
keymap[key] = actPreviewDown
|
2016-09-24 19:12:44 +00:00
|
|
|
case "preview-page-up":
|
|
|
|
keymap[key] = actPreviewPageUp
|
|
|
|
case "preview-page-down":
|
|
|
|
keymap[key] = actPreviewPageDown
|
2015-05-20 12:25:15 +00:00
|
|
|
default:
|
2015-07-16 10:18:23 +00:00
|
|
|
if isExecuteAction(actLower) {
|
2015-11-08 16:42:01 +00:00
|
|
|
var offset int
|
|
|
|
if strings.HasPrefix(actLower, "execute-multi") {
|
|
|
|
keymap[key] = actExecuteMulti
|
|
|
|
offset = len("execute-multi")
|
|
|
|
} else {
|
|
|
|
keymap[key] = actExecute
|
|
|
|
offset = len("execute")
|
|
|
|
}
|
|
|
|
if act[offset] == ':' {
|
|
|
|
execmap[key] = act[offset+1:]
|
2015-06-15 14:00:38 +00:00
|
|
|
} else {
|
2015-11-08 16:42:01 +00:00
|
|
|
execmap[key] = act[offset+1 : len(act)-1]
|
2015-06-15 14:00:38 +00:00
|
|
|
}
|
2015-06-14 03:25:08 +00:00
|
|
|
} else {
|
|
|
|
errorExit("unknown action: " + act)
|
|
|
|
}
|
2015-05-20 12:25:15 +00:00
|
|
|
}
|
|
|
|
}
|
2015-06-14 03:25:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func isExecuteAction(str string) bool {
|
2015-11-08 16:42:01 +00:00
|
|
|
if !strings.HasPrefix(str, "execute") || len(str) < len("execute()") {
|
2015-06-14 03:25:08 +00:00
|
|
|
return false
|
|
|
|
}
|
2015-11-08 16:42:01 +00:00
|
|
|
b := str[len("execute")]
|
|
|
|
if strings.HasPrefix(str, "execute-multi") {
|
|
|
|
if len(str) < len("execute-multi()") {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
b = str[len("execute-multi")]
|
|
|
|
}
|
2015-06-14 03:25:08 +00:00
|
|
|
e := str[len(str)-1]
|
2015-06-15 14:25:00 +00:00
|
|
|
if b == ':' || b == '(' && e == ')' || b == '[' && e == ']' ||
|
|
|
|
b == e && strings.ContainsAny(string(b), "~!@#$%^&*;/|") {
|
2015-06-14 03:25:08 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
2015-05-20 12:25:15 +00:00
|
|
|
}
|
|
|
|
|
2016-02-17 16:46:18 +00:00
|
|
|
func parseToggleSort(keymap map[int]actionType, str string) {
|
2015-06-18 15:31:48 +00:00
|
|
|
keys := parseKeyChords(str, "key name required")
|
2015-03-31 13:05:02 +00:00
|
|
|
if len(keys) != 1 {
|
|
|
|
errorExit("multiple keys specified")
|
|
|
|
}
|
2015-06-18 15:31:48 +00:00
|
|
|
keymap[firstKey(keys)] = actToggleSort
|
2015-03-31 13:05:02 +00:00
|
|
|
}
|
|
|
|
|
2015-09-15 10:04:53 +00:00
|
|
|
func strLines(str string) []string {
|
|
|
|
return strings.Split(strings.TrimSuffix(str, "\n"), "\n")
|
2015-07-21 15:19:37 +00:00
|
|
|
}
|
|
|
|
|
2016-06-11 10:59:12 +00:00
|
|
|
func parseSize(str string, maxPercent float64, label string) sizeSpec {
|
|
|
|
var val float64
|
|
|
|
percent := strings.HasSuffix(str, "%")
|
|
|
|
if percent {
|
|
|
|
val = atof(str[:len(str)-1])
|
|
|
|
if val < 0 {
|
|
|
|
errorExit(label + " must be non-negative")
|
2015-07-26 14:02:04 +00:00
|
|
|
}
|
2016-06-11 10:59:12 +00:00
|
|
|
if val > maxPercent {
|
|
|
|
errorExit(fmt.Sprintf("%s too large (max: %d%%)", label, int(maxPercent)))
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if strings.Contains(str, ".") {
|
|
|
|
errorExit(label + " (without %) must be a non-negative integer")
|
|
|
|
}
|
|
|
|
|
|
|
|
val = float64(atoi(str))
|
|
|
|
if val < 0 {
|
|
|
|
errorExit(label + " must be non-negative")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return sizeSpec{val, percent}
|
|
|
|
}
|
|
|
|
|
|
|
|
func parsePreviewWindow(opts *previewOpts, input string) {
|
|
|
|
layout := input
|
2016-08-11 16:16:59 +00:00
|
|
|
opts.hidden = false
|
2016-06-11 10:59:12 +00:00
|
|
|
if strings.HasSuffix(layout, ":hidden") {
|
|
|
|
opts.hidden = true
|
|
|
|
layout = strings.TrimSuffix(layout, ":hidden")
|
|
|
|
}
|
|
|
|
|
|
|
|
tokens := strings.Split(layout, ":")
|
|
|
|
if len(tokens) == 0 || len(tokens) > 2 {
|
|
|
|
errorExit("invalid window layout: " + input)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(tokens) > 1 {
|
|
|
|
opts.size = parseSize(tokens[1], 99, "window size")
|
|
|
|
} else {
|
|
|
|
opts.size = sizeSpec{50, true}
|
|
|
|
}
|
|
|
|
if !opts.size.percent && opts.size.size > 0 {
|
|
|
|
// Adjust size for border
|
|
|
|
opts.size.size += 2
|
|
|
|
}
|
|
|
|
|
|
|
|
switch tokens[0] {
|
|
|
|
case "up":
|
|
|
|
opts.position = posUp
|
|
|
|
case "down":
|
|
|
|
opts.position = posDown
|
|
|
|
case "left":
|
|
|
|
opts.position = posLeft
|
|
|
|
case "right":
|
|
|
|
opts.position = posRight
|
|
|
|
default:
|
|
|
|
errorExit("invalid window position: " + input)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseMargin(margin string) [4]sizeSpec {
|
|
|
|
margins := strings.Split(margin, ",")
|
|
|
|
checked := func(str string) sizeSpec {
|
|
|
|
return parseSize(str, 49, "margin")
|
2015-07-26 14:02:04 +00:00
|
|
|
}
|
|
|
|
switch len(margins) {
|
|
|
|
case 1:
|
|
|
|
m := checked(margins[0])
|
2016-06-11 10:59:12 +00:00
|
|
|
return [4]sizeSpec{m, m, m, m}
|
2015-07-26 14:02:04 +00:00
|
|
|
case 2:
|
|
|
|
tb := checked(margins[0])
|
|
|
|
rl := checked(margins[1])
|
2016-06-11 10:59:12 +00:00
|
|
|
return [4]sizeSpec{tb, rl, tb, rl}
|
2015-07-26 14:02:04 +00:00
|
|
|
case 3:
|
|
|
|
t := checked(margins[0])
|
|
|
|
rl := checked(margins[1])
|
|
|
|
b := checked(margins[2])
|
2016-06-11 10:59:12 +00:00
|
|
|
return [4]sizeSpec{t, rl, b, rl}
|
2015-07-26 14:02:04 +00:00
|
|
|
case 4:
|
2016-06-11 10:59:12 +00:00
|
|
|
return [4]sizeSpec{
|
2015-07-26 14:02:04 +00:00
|
|
|
checked(margins[0]), checked(margins[1]),
|
|
|
|
checked(margins[2]), checked(margins[3])}
|
|
|
|
default:
|
|
|
|
errorExit("invalid margin: " + margin)
|
|
|
|
}
|
|
|
|
return defaultMargin()
|
|
|
|
}
|
|
|
|
|
2015-01-01 19:49:30 +00:00
|
|
|
func parseOptions(opts *Options, allArgs []string) {
|
2015-06-13 15:43:44 +00:00
|
|
|
var historyMax int
|
|
|
|
if opts.History == nil {
|
|
|
|
historyMax = defaultHistoryMax
|
|
|
|
} else {
|
|
|
|
historyMax = opts.History.maxSize
|
|
|
|
}
|
|
|
|
setHistory := func(path string) {
|
|
|
|
h, e := NewHistory(path, historyMax)
|
|
|
|
if e != nil {
|
|
|
|
errorExit(e.Error())
|
|
|
|
}
|
|
|
|
opts.History = h
|
|
|
|
}
|
|
|
|
setHistoryMax := func(max int) {
|
|
|
|
historyMax = max
|
|
|
|
if historyMax < 1 {
|
|
|
|
errorExit("history max must be a positive integer")
|
|
|
|
}
|
|
|
|
if opts.History != nil {
|
|
|
|
opts.History.maxSize = historyMax
|
|
|
|
}
|
|
|
|
}
|
2016-05-18 16:46:22 +00:00
|
|
|
validateJumpLabels := false
|
2015-01-01 19:49:30 +00:00
|
|
|
for i := 0; i < len(allArgs); i++ {
|
|
|
|
arg := allArgs[i]
|
|
|
|
switch arg {
|
|
|
|
case "-h", "--help":
|
2015-09-15 04:21:51 +00:00
|
|
|
help(exitOk)
|
2015-01-01 19:49:30 +00:00
|
|
|
case "-x", "--extended":
|
2015-11-03 13:49:32 +00:00
|
|
|
opts.Extended = true
|
|
|
|
case "-e", "--exact":
|
|
|
|
opts.Fuzzy = false
|
|
|
|
case "--extended-exact":
|
|
|
|
// Note that we now don't have --no-extended-exact
|
|
|
|
opts.Fuzzy = false
|
|
|
|
opts.Extended = true
|
|
|
|
case "+x", "--no-extended":
|
|
|
|
opts.Extended = false
|
|
|
|
case "+e", "--no-exact":
|
|
|
|
opts.Fuzzy = true
|
2015-01-01 19:49:30 +00:00
|
|
|
case "-q", "--query":
|
|
|
|
opts.Query = nextString(allArgs, &i, "query string required")
|
|
|
|
case "-f", "--filter":
|
|
|
|
filter := nextString(allArgs, &i, "query string required")
|
|
|
|
opts.Filter = &filter
|
2016-09-07 00:58:18 +00:00
|
|
|
case "--algo":
|
|
|
|
opts.FuzzyAlgo = parseAlgo(nextString(allArgs, &i, "algorithm required (v1|v2)"))
|
2015-03-28 17:59:32 +00:00
|
|
|
case "--expect":
|
2015-06-18 15:31:48 +00:00
|
|
|
opts.Expect = parseKeyChords(nextString(allArgs, &i, "key names required"), "key names required")
|
2015-04-16 05:19:28 +00:00
|
|
|
case "--tiebreak":
|
2016-01-12 18:07:42 +00:00
|
|
|
opts.Criteria = parseTiebreak(nextString(allArgs, &i, "sort criterion required"))
|
2015-05-20 12:25:15 +00:00
|
|
|
case "--bind":
|
2016-02-17 16:46:18 +00:00
|
|
|
parseKeymap(opts.Keymap, opts.Execmap, nextString(allArgs, &i, "bind expression required"))
|
2015-04-17 17:52:30 +00:00
|
|
|
case "--color":
|
2015-05-31 07:46:54 +00:00
|
|
|
spec := optionalNextString(allArgs, &i)
|
|
|
|
if len(spec) == 0 {
|
2016-10-24 00:44:56 +00:00
|
|
|
opts.Theme = tui.EmptyTheme()
|
2015-05-31 07:46:54 +00:00
|
|
|
} else {
|
|
|
|
opts.Theme = parseTheme(opts.Theme, spec)
|
|
|
|
}
|
2015-03-31 13:05:02 +00:00
|
|
|
case "--toggle-sort":
|
2016-02-17 16:46:18 +00:00
|
|
|
parseToggleSort(opts.Keymap, nextString(allArgs, &i, "key name required"))
|
2015-01-01 19:49:30 +00:00
|
|
|
case "-d", "--delimiter":
|
|
|
|
opts.Delimiter = delimiterRegexp(nextString(allArgs, &i, "delimiter required"))
|
|
|
|
case "-n", "--nth":
|
|
|
|
opts.Nth = splitNth(nextString(allArgs, &i, "nth expression required"))
|
|
|
|
case "--with-nth":
|
|
|
|
opts.WithNth = splitNth(nextString(allArgs, &i, "nth expression required"))
|
|
|
|
case "-s", "--sort":
|
|
|
|
opts.Sort = optionalNumeric(allArgs, &i)
|
|
|
|
case "+s", "--no-sort":
|
|
|
|
opts.Sort = 0
|
2015-02-25 16:42:15 +00:00
|
|
|
case "--tac":
|
|
|
|
opts.Tac = true
|
|
|
|
case "--no-tac":
|
|
|
|
opts.Tac = false
|
2015-01-01 19:49:30 +00:00
|
|
|
case "-i":
|
2015-01-11 18:01:24 +00:00
|
|
|
opts.Case = CaseIgnore
|
2015-01-01 19:49:30 +00:00
|
|
|
case "+i":
|
2015-01-11 18:01:24 +00:00
|
|
|
opts.Case = CaseRespect
|
2015-01-01 19:49:30 +00:00
|
|
|
case "-m", "--multi":
|
|
|
|
opts.Multi = true
|
|
|
|
case "+m", "--no-multi":
|
|
|
|
opts.Multi = false
|
2015-03-18 16:59:14 +00:00
|
|
|
case "--ansi":
|
|
|
|
opts.Ansi = true
|
|
|
|
case "--no-ansi":
|
|
|
|
opts.Ansi = false
|
2015-01-01 19:49:30 +00:00
|
|
|
case "--no-mouse":
|
|
|
|
opts.Mouse = false
|
|
|
|
case "+c", "--no-color":
|
2015-04-17 17:52:30 +00:00
|
|
|
opts.Theme = nil
|
2015-01-01 19:49:30 +00:00
|
|
|
case "+2", "--no-256":
|
2016-10-24 00:44:56 +00:00
|
|
|
opts.Theme = tui.Default16
|
2015-01-01 19:49:30 +00:00
|
|
|
case "--black":
|
|
|
|
opts.Black = true
|
|
|
|
case "--no-black":
|
|
|
|
opts.Black = false
|
2016-11-15 14:57:32 +00:00
|
|
|
case "--bold":
|
|
|
|
opts.Bold = true
|
|
|
|
case "--no-bold":
|
|
|
|
opts.Bold = false
|
2015-01-01 19:49:30 +00:00
|
|
|
case "--reverse":
|
|
|
|
opts.Reverse = true
|
|
|
|
case "--no-reverse":
|
|
|
|
opts.Reverse = false
|
2015-06-16 14:14:57 +00:00
|
|
|
case "--cycle":
|
|
|
|
opts.Cycle = true
|
|
|
|
case "--no-cycle":
|
|
|
|
opts.Cycle = false
|
2015-04-16 03:56:01 +00:00
|
|
|
case "--hscroll":
|
|
|
|
opts.Hscroll = true
|
|
|
|
case "--no-hscroll":
|
|
|
|
opts.Hscroll = false
|
2016-03-01 18:06:21 +00:00
|
|
|
case "--hscroll-off":
|
|
|
|
opts.HscrollOff = nextInt(allArgs, &i, "hscroll offset required")
|
2015-04-21 14:50:53 +00:00
|
|
|
case "--inline-info":
|
|
|
|
opts.InlineInfo = true
|
|
|
|
case "--no-inline-info":
|
|
|
|
opts.InlineInfo = false
|
2016-05-17 17:06:52 +00:00
|
|
|
case "--jump-labels":
|
|
|
|
opts.JumpLabels = nextString(allArgs, &i, "label characters required")
|
2016-05-18 16:46:22 +00:00
|
|
|
validateJumpLabels = true
|
2015-01-01 19:49:30 +00:00
|
|
|
case "-1", "--select-1":
|
|
|
|
opts.Select1 = true
|
|
|
|
case "+1", "--no-select-1":
|
|
|
|
opts.Select1 = false
|
|
|
|
case "-0", "--exit-0":
|
|
|
|
opts.Exit0 = true
|
|
|
|
case "+0", "--no-exit-0":
|
|
|
|
opts.Exit0 = false
|
2015-06-21 08:29:58 +00:00
|
|
|
case "--read0":
|
2015-06-08 06:36:21 +00:00
|
|
|
opts.ReadZero = true
|
2015-06-21 08:29:58 +00:00
|
|
|
case "--no-read0":
|
|
|
|
opts.ReadZero = false
|
2016-09-17 19:52:47 +00:00
|
|
|
case "--print0":
|
|
|
|
opts.Printer = func(str string) { fmt.Print(str, "\x00") }
|
|
|
|
case "--no-print0":
|
|
|
|
opts.Printer = func(str string) { fmt.Println(str) }
|
2015-01-01 19:49:30 +00:00
|
|
|
case "--print-query":
|
|
|
|
opts.PrintQuery = true
|
|
|
|
case "--no-print-query":
|
|
|
|
opts.PrintQuery = false
|
|
|
|
case "--prompt":
|
|
|
|
opts.Prompt = nextString(allArgs, &i, "prompt string required")
|
2015-02-13 03:25:19 +00:00
|
|
|
case "--sync":
|
|
|
|
opts.Sync = true
|
|
|
|
case "--no-sync":
|
|
|
|
opts.Sync = false
|
|
|
|
case "--async":
|
|
|
|
opts.Sync = false
|
2015-06-13 15:43:44 +00:00
|
|
|
case "--no-history":
|
|
|
|
opts.History = nil
|
|
|
|
case "--history":
|
|
|
|
setHistory(nextString(allArgs, &i, "history file path required"))
|
2015-06-18 16:03:25 +00:00
|
|
|
case "--history-size":
|
2015-06-13 15:43:44 +00:00
|
|
|
setHistoryMax(nextInt(allArgs, &i, "history max size required"))
|
2015-09-15 10:04:53 +00:00
|
|
|
case "--no-header":
|
2015-07-21 18:21:20 +00:00
|
|
|
opts.Header = []string{}
|
|
|
|
case "--no-header-lines":
|
|
|
|
opts.HeaderLines = 0
|
2015-09-15 10:04:53 +00:00
|
|
|
case "--header":
|
|
|
|
opts.Header = strLines(nextString(allArgs, &i, "header string required"))
|
2015-07-21 18:21:20 +00:00
|
|
|
case "--header-lines":
|
|
|
|
opts.HeaderLines = atoi(
|
|
|
|
nextString(allArgs, &i, "number of header lines required"))
|
2016-06-11 10:59:12 +00:00
|
|
|
case "--preview":
|
|
|
|
opts.Preview.command = nextString(allArgs, &i, "preview command required")
|
|
|
|
case "--no-preview":
|
|
|
|
opts.Preview.command = ""
|
|
|
|
case "--preview-window":
|
|
|
|
parsePreviewWindow(&opts.Preview,
|
|
|
|
nextString(allArgs, &i, "preview window layout required: [up|down|left|right][:SIZE[%]]"))
|
2015-07-26 14:02:04 +00:00
|
|
|
case "--no-margin":
|
|
|
|
opts.Margin = defaultMargin()
|
|
|
|
case "--margin":
|
|
|
|
opts.Margin = parseMargin(
|
|
|
|
nextString(allArgs, &i, "margin required (TRBL / TB,RL / T,RL,B / T,R,B,L)"))
|
2015-11-30 08:35:03 +00:00
|
|
|
case "--tabstop":
|
|
|
|
opts.Tabstop = nextInt(allArgs, &i, "tab stop required")
|
2015-01-01 19:49:30 +00:00
|
|
|
case "--version":
|
|
|
|
opts.Version = true
|
|
|
|
default:
|
2016-09-07 00:58:18 +00:00
|
|
|
if match, value := optString(arg, "--algo="); match {
|
|
|
|
opts.FuzzyAlgo = parseAlgo(value)
|
|
|
|
} else if match, value := optString(arg, "-q", "--query="); match {
|
2015-01-01 19:49:30 +00:00
|
|
|
opts.Query = value
|
2015-06-14 02:23:07 +00:00
|
|
|
} else if match, value := optString(arg, "-f", "--filter="); match {
|
2015-01-01 19:49:30 +00:00
|
|
|
opts.Filter = &value
|
2015-06-14 02:23:07 +00:00
|
|
|
} else if match, value := optString(arg, "-d", "--delimiter="); match {
|
2015-01-01 19:49:30 +00:00
|
|
|
opts.Delimiter = delimiterRegexp(value)
|
|
|
|
} else if match, value := optString(arg, "--prompt="); match {
|
|
|
|
opts.Prompt = value
|
2015-06-14 02:23:07 +00:00
|
|
|
} else if match, value := optString(arg, "-n", "--nth="); match {
|
2015-01-01 19:49:30 +00:00
|
|
|
opts.Nth = splitNth(value)
|
|
|
|
} else if match, value := optString(arg, "--with-nth="); match {
|
|
|
|
opts.WithNth = splitNth(value)
|
2015-06-14 02:23:07 +00:00
|
|
|
} else if match, _ := optString(arg, "-s", "--sort="); match {
|
2015-01-01 19:49:30 +00:00
|
|
|
opts.Sort = 1 // Don't care
|
2015-03-31 13:05:02 +00:00
|
|
|
} else if match, value := optString(arg, "--toggle-sort="); match {
|
2016-02-17 16:46:18 +00:00
|
|
|
parseToggleSort(opts.Keymap, value)
|
2015-03-28 17:59:32 +00:00
|
|
|
} else if match, value := optString(arg, "--expect="); match {
|
2015-06-18 15:31:48 +00:00
|
|
|
opts.Expect = parseKeyChords(value, "key names required")
|
2015-04-16 05:19:28 +00:00
|
|
|
} else if match, value := optString(arg, "--tiebreak="); match {
|
2016-01-12 18:07:42 +00:00
|
|
|
opts.Criteria = parseTiebreak(value)
|
2015-04-17 17:52:30 +00:00
|
|
|
} else if match, value := optString(arg, "--color="); match {
|
2015-05-31 07:46:54 +00:00
|
|
|
opts.Theme = parseTheme(opts.Theme, value)
|
2015-05-20 12:25:15 +00:00
|
|
|
} else if match, value := optString(arg, "--bind="); match {
|
2016-02-17 16:46:18 +00:00
|
|
|
parseKeymap(opts.Keymap, opts.Execmap, value)
|
2015-06-13 15:43:44 +00:00
|
|
|
} else if match, value := optString(arg, "--history="); match {
|
|
|
|
setHistory(value)
|
2015-06-18 16:03:25 +00:00
|
|
|
} else if match, value := optString(arg, "--history-size="); match {
|
2015-06-13 15:43:44 +00:00
|
|
|
setHistoryMax(atoi(value))
|
2015-09-15 10:04:53 +00:00
|
|
|
} else if match, value := optString(arg, "--header="); match {
|
|
|
|
opts.Header = strLines(value)
|
2015-07-21 18:21:20 +00:00
|
|
|
} else if match, value := optString(arg, "--header-lines="); match {
|
|
|
|
opts.HeaderLines = atoi(value)
|
2016-06-11 10:59:12 +00:00
|
|
|
} else if match, value := optString(arg, "--preview="); match {
|
|
|
|
opts.Preview.command = value
|
|
|
|
} else if match, value := optString(arg, "--preview-window="); match {
|
|
|
|
parsePreviewWindow(&opts.Preview, value)
|
2015-07-26 14:02:04 +00:00
|
|
|
} else if match, value := optString(arg, "--margin="); match {
|
|
|
|
opts.Margin = parseMargin(value)
|
2015-11-30 08:35:03 +00:00
|
|
|
} else if match, value := optString(arg, "--tabstop="); match {
|
|
|
|
opts.Tabstop = atoi(value)
|
2016-03-01 18:06:21 +00:00
|
|
|
} else if match, value := optString(arg, "--hscroll-off="); match {
|
|
|
|
opts.HscrollOff = atoi(value)
|
2016-05-17 17:06:52 +00:00
|
|
|
} else if match, value := optString(arg, "--jump-labels="); match {
|
|
|
|
opts.JumpLabels = value
|
2015-01-01 19:49:30 +00:00
|
|
|
} else {
|
|
|
|
errorExit("unknown option: " + arg)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-01-22 21:26:00 +00:00
|
|
|
|
2015-07-22 04:45:38 +00:00
|
|
|
if opts.HeaderLines < 0 {
|
|
|
|
errorExit("header lines must be a non-negative integer")
|
|
|
|
}
|
|
|
|
|
2016-03-01 18:06:21 +00:00
|
|
|
if opts.HscrollOff < 0 {
|
|
|
|
errorExit("hscroll offset must be a non-negative integer")
|
|
|
|
}
|
|
|
|
|
2015-11-30 08:35:03 +00:00
|
|
|
if opts.Tabstop < 1 {
|
|
|
|
errorExit("tab stop must be a positive integer")
|
|
|
|
}
|
2016-05-17 17:06:52 +00:00
|
|
|
|
|
|
|
if len(opts.JumpLabels) == 0 {
|
|
|
|
errorExit("empty jump labels")
|
|
|
|
}
|
2016-05-18 16:46:22 +00:00
|
|
|
|
|
|
|
if validateJumpLabels {
|
|
|
|
for _, r := range opts.JumpLabels {
|
|
|
|
if r < 32 || r > 126 {
|
|
|
|
errorExit("non-ascii jump labels are not allowed")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-02-17 16:46:18 +00:00
|
|
|
}
|
2015-11-30 08:35:03 +00:00
|
|
|
|
2016-02-17 16:46:18 +00:00
|
|
|
func postProcessOptions(opts *Options) {
|
|
|
|
// Default actions for CTRL-N / CTRL-P when --history is set
|
2015-06-13 15:43:44 +00:00
|
|
|
if opts.History != nil {
|
2016-10-24 00:44:56 +00:00
|
|
|
if _, prs := opts.Keymap[tui.CtrlP]; !prs {
|
|
|
|
opts.Keymap[tui.CtrlP] = actPreviousHistory
|
2015-06-13 15:43:44 +00:00
|
|
|
}
|
2016-10-24 00:44:56 +00:00
|
|
|
if _, prs := opts.Keymap[tui.CtrlN]; !prs {
|
|
|
|
opts.Keymap[tui.CtrlN] = actNextHistory
|
2015-06-13 15:43:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-17 16:46:18 +00:00
|
|
|
// Extend the default key map
|
|
|
|
keymap := defaultKeymap()
|
|
|
|
for key, act := range opts.Keymap {
|
|
|
|
if act == actToggleSort {
|
|
|
|
opts.ToggleSort = true
|
|
|
|
}
|
|
|
|
keymap[key] = act
|
2015-06-13 15:43:44 +00:00
|
|
|
}
|
2016-02-17 16:46:18 +00:00
|
|
|
opts.Keymap = keymap
|
2015-06-13 15:43:44 +00:00
|
|
|
|
2015-01-22 21:26:00 +00:00
|
|
|
// If we're not using extended search mode, --nth option becomes irrelevant
|
|
|
|
// if it contains the whole range
|
2015-11-03 13:49:32 +00:00
|
|
|
if !opts.Extended || len(opts.Nth) == 1 {
|
2015-01-22 21:26:00 +00:00
|
|
|
for _, r := range opts.Nth {
|
|
|
|
if r.begin == rangeEllipsis && r.end == rangeEllipsis {
|
|
|
|
opts.Nth = make([]Range, 0)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-01-01 19:49:30 +00:00
|
|
|
}
|
|
|
|
|
2015-01-11 18:01:24 +00:00
|
|
|
// ParseOptions parses command-line options
|
2015-01-01 19:49:30 +00:00
|
|
|
func ParseOptions() *Options {
|
2015-01-11 18:01:24 +00:00
|
|
|
opts := defaultOptions()
|
2015-01-01 19:49:30 +00:00
|
|
|
|
|
|
|
// Options from Env var
|
|
|
|
words, _ := shellwords.Parse(os.Getenv("FZF_DEFAULT_OPTS"))
|
2016-02-17 16:46:18 +00:00
|
|
|
if len(words) > 0 {
|
|
|
|
parseOptions(opts, words)
|
|
|
|
}
|
2015-01-01 19:49:30 +00:00
|
|
|
|
|
|
|
// Options from command-line arguments
|
|
|
|
parseOptions(opts, os.Args[1:])
|
2016-02-17 16:46:18 +00:00
|
|
|
|
|
|
|
postProcessOptions(opts)
|
2015-01-01 19:49:30 +00:00
|
|
|
return opts
|
|
|
|
}
|