Crystal port of screen package (Go), to provide an easy way to clear the screen or move the cursor in cross-platform way (Linux, Mac OS, Windows).
-
Add the dependency to your
shard.yml
:dependencies: screen: github: mdwagner/screen.cr version: "~> 0.2.0"
-
Run
shards install
require "screen"
Screen.clear # Clear all the characters on the screen
Screen.move_top_left # Moves the cursor to the top-left position of the screen
Screen.cls # Performs both methods above (typical `cls` or `clear` terminal behavior)
- Fork it (https://github.com/mdwagner/screen/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request