mirror of https://github.com/sbt/sbt.git
fix tab completion of new inspect variations
This commit is contained in:
parent
053f2a4ea0
commit
79bbe8f8a4
|
|
@ -458,7 +458,7 @@ object BuiltinCommands
|
||||||
def allKeyParser(s: State): Parser[AttributeKey[_]] =
|
def allKeyParser(s: State): Parser[AttributeKey[_]] =
|
||||||
{
|
{
|
||||||
val keyMap = Project.structure(s).index.keyMap
|
val keyMap = Project.structure(s).index.keyMap
|
||||||
token((Space ~> ID) !!! "Expected key" examples keyMap.keySet) flatMap { key => Act.getKey(keyMap, key, idFun) }
|
token(Space ~> (ID !!! "Expected key" examples keyMap.keySet)) flatMap { key => Act.getKey(keyMap, key, idFun) }
|
||||||
}
|
}
|
||||||
val spacedKeyParser = (s: State) => Act.requireSession(s, token(Space) ~> Act.scopedKeyParser(s))
|
val spacedKeyParser = (s: State) => Act.requireSession(s, token(Space) ~> Act.scopedKeyParser(s))
|
||||||
val optSpacedKeyParser = (s: State) => spacedKeyParser(s).?
|
val optSpacedKeyParser = (s: State) => spacedKeyParser(s).?
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue