mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
term.ui: allow setting the terminal title (#6809)
This commit is contained in:
@@ -1,10 +1,22 @@
|
||||
module ui
|
||||
|
||||
const (
|
||||
not_implemented_yet = "term.input: error: Windows support isn't implemented yet"
|
||||
)
|
||||
|
||||
pub fn init(cfg Config) &Context {
|
||||
panic("term.input: error: Windows support isn't implemented yet")
|
||||
panic(not_implemented_yet)
|
||||
return &Context{}
|
||||
}
|
||||
|
||||
pub fn (mut ctx Context) run() {
|
||||
panic("term.input: error: Windows support isn't implemented yet")
|
||||
panic(not_implemented_yet)
|
||||
}
|
||||
|
||||
pub fn (mut ctx Context) save_title() {
|
||||
panic(not_implemented_yet)
|
||||
}
|
||||
|
||||
pub fn (mut ctx Context) load_title() {
|
||||
panic(not_implemented_yet)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user