https://github.com/mdom/curses-readline
Readline library for curses
https://github.com/mdom/curses-readline
curses perl perl-module perl5 readline
Last synced: 6 months ago
JSON representation
Readline library for curses
- Host: GitHub
- URL: https://github.com/mdom/curses-readline
- Owner: mdom
- License: other
- Created: 2019-07-19T15:10:41.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-10-23T07:51:45.000Z (over 5 years ago)
- Last Synced: 2025-03-16T04:28:07.765Z (over 1 year ago)
- Topics: curses, perl, perl-module, perl5, readline
- Language: Perl
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
- License: LICENSE
Awesome Lists containing this project
README
# NAME
Curses::Readline - Readline library for curses
# SYNOPSIS
use Curses::Readline qw(curses_readline);
use Curses;
initscr;
curses_readline;
endwin;
# DESCRIPTION
This library provides a way to query a user for a line with
readline-like key bindings in a curses windows. It behaves similar to
the command line in mutt or vi.
The prompt is displayed on the last line of the curses window, which
will be emptied on a call to _curses\_readline()_.
# COPYRIGHT AND LICENSE
Copyright 2019 Mario Domgoergen ``
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.