mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
check-md: verify code example formatting (#7143)
This commit is contained in:
@@ -17,20 +17,20 @@ import term
|
||||
import os
|
||||
|
||||
fn main() {
|
||||
term.clear() // clears the content in the terminal
|
||||
width, height := term.get_terminal_size() // get the size of the terminal
|
||||
term.set_cursor_position(x: width / 2, y: height / 2) // now we point the cursor to the middle of the terminal
|
||||
println(term.strikethrough(term.bright_green("hello world"))) // Print green text
|
||||
term.set_cursor_position(x: 0, y: height) // Sets the position of the cursor to the bottom of the terminal
|
||||
mut var := os.input('press q to quit: ')
|
||||
// Keep prompting until the user presses the q key
|
||||
for {
|
||||
if var == 'q' {
|
||||
break
|
||||
} else {
|
||||
var = os.input('press q to quit: ')
|
||||
}
|
||||
}
|
||||
term.clear() // clears the content in the terminal
|
||||
width, height := term.get_terminal_size() // get the size of the terminal
|
||||
term.set_cursor_position(x: width / 2, y: height / 2) // now we point the cursor to the middle of the terminal
|
||||
println(term.strikethrough(term.bright_green('hello world'))) // Print green text
|
||||
term.set_cursor_position(x: 0, y: height) // Sets the position of the cursor to the bottom of the terminal
|
||||
mut var := os.input('press q to quit: ')
|
||||
// Keep prompting until the user presses the q key
|
||||
for {
|
||||
if var == 'q' {
|
||||
break
|
||||
} else {
|
||||
var = os.input('press q to quit: ')
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
@@ -42,55 +42,40 @@ Here are some functions you should be aware of in the `term `module:
|
||||
|
||||
```v oksyntax
|
||||
import term
|
||||
|
||||
// returns the height and the width of the terminal
|
||||
width, height := term.get_terminal_size()
|
||||
|
||||
// returns the string as green text to be printed on stdout
|
||||
term.ok_message('cool')
|
||||
|
||||
// returns the string as red text to be printed on stdout
|
||||
term.fail_message('oh, no')
|
||||
|
||||
// returns the string as yellow text to be printed on stdout
|
||||
term.warning_message('be warned')
|
||||
|
||||
//clears the entire terminal and leaves a blank one
|
||||
// clears the entire terminal and leaves a blank one
|
||||
term.clear()
|
||||
|
||||
// colors the output of the output, the available colors are: black,blue,yellow,green,cyan,gray,bright_blue,bright_green,bright_red,bright_black,bright_cyan
|
||||
term.yellow('submarine')
|
||||
|
||||
// transforms the given string into bold text
|
||||
term.bold('and beautiful')
|
||||
|
||||
// puts a strikethrough into the given string
|
||||
term.strikethrough('the core of the problem')
|
||||
|
||||
// underlines the given string
|
||||
term.underline('important')
|
||||
|
||||
// colors the background of the output following the given color
|
||||
// the available colors are: black, blue, yellow, green, cyan, gray
|
||||
term.bg_green('field')
|
||||
|
||||
// sets the position of the cursor at a given place in the terminal
|
||||
term.set_cursor_position(x: 5, y: 10)
|
||||
|
||||
// moves the cursor up
|
||||
term.cursor_up()
|
||||
|
||||
// moves the cursor down
|
||||
term.cursor_down()
|
||||
|
||||
// moves the cursor to the right
|
||||
term.cursor_forward()
|
||||
|
||||
// moves the cursor to the left
|
||||
term.cursor_back()
|
||||
|
||||
// shows the cursor
|
||||
term.show_cursor()
|
||||
|
||||
// hides the cursor
|
||||
term.hide_cursor()
|
||||
```
|
||||
|
||||
@@ -4,7 +4,7 @@ A V module for designing terminal UI apps
|
||||
|
||||
#### Quickstart
|
||||
|
||||
```v
|
||||
```v nofmt
|
||||
import term.ui as tui
|
||||
|
||||
struct App {
|
||||
|
||||
Reference in New Issue
Block a user