mirror of https://github.com/mpv-player/mpv
console.lua: add nonrepeatable prefix to command_prefixes
This commit is contained in:
parent
bc5863a631
commit
07e5d69351
|
@ -1243,8 +1243,8 @@ function complete(backwards)
|
|||
local command_prefixes = {
|
||||
['osd-auto'] = true, ['no-osd'] = true, ['osd-bar'] = true,
|
||||
['osd-msg'] = true, ['osd-msg-bar'] = true, ['raw'] = true,
|
||||
['expand-properties'] = true, ['repeatable'] = true, ['async'] = true,
|
||||
['sync'] = true
|
||||
['expand-properties'] = true, ['repeatable'] = true,
|
||||
['nonrepeatable'] = true, ['async'] = true, ['sync'] = true
|
||||
}
|
||||
|
||||
while tokens[first_useful_token_index] and
|
||||
|
|
Loading…
Reference in New Issue