Git Product home page Git Product logo

Comments (2)

gdamore avatar gdamore commented on July 20, 2024

Can you give an example? Is this combining characters or something like that?

from tcell.

indiejames avatar indiejames commented on July 20, 2024

Yes, this would be using combining characters. Given the following code that reads from stdin:

package main

import (
	"fmt"
	"os"

	"golang.org/x/term"
)

func main() {
	// switch stdin into 'raw' mode
	oldState, err := term.MakeRaw(int(os.Stdin.Fd()))
	if err != nil {
		fmt.Println(err)
		return
	}
	defer term.Restore(int(os.Stdin.Fd()), oldState)

	b := make([]byte, 16)
	var len int
	for {
		len, err = os.Stdin.Read(b)
		if err != nil {
			fmt.Println(err)
			return
		}
		if string(b[0:len]) == "q" {
			break
		}
		fmt.Println("read", len, "bytes")
		fmt.Printf("the char %s was hit\n", string(b[0:len]))
	}
}

I can run this and enter πŸ‡ΎπŸ‡ͺ which consistently prints out the following:

read 8 bytes
the char πŸ‡ΎπŸ‡ͺ was hit

I have tried using os.Stdin.Read with a tcell/tview project as a work-around, which works somewhat, but it seems to drop about every other typed character. This is without calling SetInputCapture on the tview application. Not sure if there is a way to fix that (I can ask on the tview site), but I thought it better to use EventKey if it could handle multi-rune character input.

from tcell.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.