Reputation: 1052
TabNine
is a deep-learning-based extension that helps in coding. As said in the doc we should type in TabNine::sem
to enable semantic completion in the text editor, I did not get it. Where and how to run this command on order to enable that feature?
Upvotes: 3
Views: 7247
Reputation: 43
There are good docs, official: TabNine Semantic Completion
To get semantic completion working:
Type TabNine::sem to enable semantic completion in your text editor. If you don't see any message, then semantic completion is working.
Verify you are running TabNine 1.0.5 or above by typing TabNine::version in your text editor. If you're running an earlier version, try restarting your editor.
Upvotes: 1
Reputation: 136
You have to type TabNine::sem directly in the same place you type your code, but in new line and press enter.
function yourfunction(){
[...your code here...]
}
TabNine::sem
Upvotes: 3