mirror of https://github.com/mpv-player/mpv
console.lua: close with right click
Useful to close the console after it was opened with the mouse. Also fix the spacing of the previous line.
This commit is contained in:
parent
4ab1ab8284
commit
ad0c29e5ac
|
@ -1584,7 +1584,8 @@ local function get_bindings()
|
|||
{ 'shift+del', handle_del },
|
||||
{ 'ins', handle_ins },
|
||||
{ 'shift+ins', function() paste(false) end },
|
||||
{ 'mbtn_mid', function() paste(false, true) end },
|
||||
{ 'mbtn_mid', function() paste(false, true) end },
|
||||
{ 'mbtn_right', function() set_active(false) end },
|
||||
{ 'left', function() prev_char() end },
|
||||
{ 'ctrl+b', function() page_up_or_prev_char() end },
|
||||
{ 'right', function() next_char() end },
|
||||
|
|
Loading…
Reference in New Issue