webscopeio / react-textarea-autocomplete

📝 React component implements configurable GitHub's like textarea autocomplete.
MIT License
451 stars 80 forks source link

Feature request: IDE like auto suggest #88

Closed Obiwarn closed 5 years ago

Obiwarn commented 5 years ago

I desperately search for a function like this:

  1. no trigger char (any char in the auto suggest list opens suggestions)
  2. filter suggest list by what is typed (types ja => only show "java" and "jabber" in the list)

Is it hard to implement sth. like this?

image

jukben commented 5 years ago

I guess this is out of the scope of this library. 😞

This might solve the 1. issue https://github.com/webscopeio/react-textarea-autocomplete/issues/77 the 2. should be doable even with this API (it's just about the custom implementation of data provider)

Let's continue here or there and we might figure out something.