1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

fix clipboard_linux.v

This commit is contained in:
Alexander Medvednikov 2019-12-07 18:16:19 +03:00
parent e1ad1794e3
commit 7b0e378947
2 changed files with 45 additions and 15 deletions

View File

@ -300,6 +300,7 @@ fn (cb mut Clipboard) start_listener(){
} }
} }
C.PropertyNotify {} C.PropertyNotify {}
else {}
} }
} }
} }

View File

@ -190,6 +190,7 @@ fn (r Readline) analyse(c int) Action {
fn (r Readline) analyse_control() Action { fn (r Readline) analyse_control() Action {
c := r.read_char() c := r.read_char()
match c { match c {
`[` { `[` {
sequence := r.read_char() sequence := r.read_char()
@ -204,7 +205,35 @@ fn (r Readline) analyse_control() Action {
else {} else {}
} }
} }
else { }
} }
/*
//TODO
match c {
case `[`:
sequence := r.read_char()
match sequence {
case `C`: return .move_cursor_right
case `D`: return .move_cursor_left
case `B`: return .history_next
case `A`: return .history_previous
case `1`: return r.analyse_extended_control()
case `2`: return r.analyse_extended_control_no_eat(sequence)
case `3`: return r.analyse_extended_control_no_eat(sequence)
case `9`:
foo()
bar()
else:
}
else:
}
*/
return .nothing return .nothing
} }