-
Notifications
You must be signed in to change notification settings - Fork 378
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Simple text search for tern #1046
Comments
Sorry, I don't understand what you are talking about. Can you provide a demo or describe more details. |
@othree sure! sorry for being so clear about problem. below is before behaviour for autocomplete using tern before.movbelow is after i made modification for the options being provided for autocomplete after.movSo now when i search with 'API.data', autocomplete should show up everything which has 'API.data' as string because 'API.data' might have more properties eg API.data.list. API.data.isLoading etc. Is this possible today? I went through the docs but couldn't find it. |
Yes, AFAIK the child properties of an object still possible to provide such information. |
@othree can you please elaborate on that? or can tell me how do this? |
I am writing autocomplete for codeMirror and i have options such as API, API.data, API.isLoading, API.data.list so rather than just providing API and then getting next values i show both ways. But when i write API.data, i want API.data and in suggestion API.data.list (ie just text match). I am not sure if this is possible today coz i wasn't able to find it anywhere. Can someone please guide me with this?
The text was updated successfully, but these errors were encountered: