1

如何在 bash 中编写自动完成功能,如果我有:

mycommand first_argument|garbage

where|表示光标,它应该通过"first_argument"而不是"first_argumentgarbage"compgen?

在示例中,我的行为方式错误

COMPREPLY=( $(compgen -W "add remove list use current" -- "$cur") ) # buggy
4

1 回答 1

2

Bash 补全使用了很多不同的变量。其中一些用于处理输入并确定要完成哪个参数。

对于下面的解释,我将使用这个测试输入(|作为光标):

./test.sh ad re|garbage
  • ${COMP_WORDS}: 以数组的形式包含输入的所有单词。在这种情况下,它包含:${COMP_WORDS[@]} == {"./test.sh", "ad", "regarbage"}
    • $COMP_WORDBREAKS变量中找到单词分隔符
  • $COMP_CWORD:包含光标当前选择的单词的位置。在这种情况下,它包含:$COMP_CWORD == 2
  • $COMP_LINE: 包含字符串形式的整个输入。在这种情况下,它包含:$COMP_LINE == "./test.sh ad regarbage"
  • $COMP_POINT: 包含光标在整行中的位置。在这种情况下,它包含:$COMP_POINT == 15

仍然使用相同的数据,doingcur=${COMP_WORDS[COMP_CWORD]}将返回${COMP_WORD}数组中索引 2 处的元素,即regarbage.

为了规避这种行为,您还必须使用$COMP_LINEand$COMP_POINT变量。这是我想出的:

# we truncate our line up to the position of our cursor
# we transform the result into an array
cur=(${COMP_LINE:0:$COMP_POINT})

# we use ${cur} the same way we would use ${COMP_WORDS}
COMPREPLY=( $( compgen -W "add remove list use current" -- "${cur[$COMP_CWORD]}" ) )

输出 :

> ./test2.sh ad re|garbage
# press TAB
> ./test2.sh ad remove|garbage

remove请注意,默认情况下,和之间没有空格garbage。如果这是您想要的行为,您将不得不玩转完成机制。

于 2016-12-01T11:35:29.327 回答