ncurses
Version, currently master branch1 version
- master branchlatestOct 2, 2018
github.com/geolessel/ncurses.cr
NCurses bindings for Crystal
0 stars
0 dependents
License: MIT
Installation
# Add this to your shard.yml
dependencies:
ncurses:
github: geolessel/ncurses.cr
branch: mastermaster is a branch, not a release, so this tracks it rather than pinning a version.
Then run:
shards installshard.yml
- Crystal
- no constraint declared
- License
- MIT
- Author
- Naomichi Agata
Dependencies
This version declares no dependencies.
README
ncurses
ncurses.cr is a Crystal binding to the C ncurses library.
Installation
Add this to your application's shard.yml:
dependencies:
ncurses:
github: agatan/ncurses.cr
You also need to install the ncurses library.
e.g. in ubuntu, sudo apt install libncursesw5-dev
Usage
require "ncurses"
NCurses.open do
# initialize
NCurses.cbreak
NCurses.noecho
NCurses.start_color
# define background color
pair = NCurses::ColorPair.new(1).init(NCurses::Color::RED, NCurses::Color::BLACK)
NCurses.bkgd(pair)
NCurses.erase
# move the cursor
NCurses.move(x: 0, y: 1)
# longname returns the verbose description of the current terminal
NCurses.addstr(NCurses.longname)
NCurses.move(x: 0, y: 2)
NCurses.addstr(NCurses.curses_version)
NCurses.move(y: 10, x: 20)
NCurses.addstr("Hello, world!")
NCurses.refresh
NCurses.notimeout(true)
NCurses.getch
end
Examples
See example/ for more examples.
Contributing
- Fork it ( https://github.com/[your-github-name]/ncurses/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
Contributors
- agatan Naomichi Agata - creator, maintainer
Documentation
Built from the current release. The first visit to a release nobody has asked for starts its build.
Links
This branch
- Branch
master- Seen
- Oct 2, 2018
- Indexed
- yes
Dependents
No indexed shard depends on this one yet.
Repository
github.com/geolessel/ncurses.cr
Metadata
- Created
- Aug 16, 2026
- Updated
- Aug 16, 2026
- Synced
- Aug 16, 2026
- Versions
- 1