Actions
Bug #975
closedruby curses extension does not support multibyte characters
Bug #975:
ruby curses extension does not support multibyte characters
Description
=begin
ncurses supplies a ncursesw library that works as drop-in replacement for the ncurses with added multibyte character support. Just updating the library test enables printing UTF-8 for me.
test (run with ruby -KU) in utf-8 locale:
require 'curses'
test_string = "あ"
Curses.init_screen
Curses.addstr test_string
Curses.refresh
Curses.getch
Curses.close_screen
STDOUT.puts test_string
=end
Files
Actions