Search

Install in your Preferred Editor, an Auto-Complete with Artificial Intelligence

A code auto-complete using Machine Learning.


TabNine

It was a while ago that I was browsing Youtube and an ad before the start of the videos caught my attention, because I was a programmer typing a code and the auto-complete were alternatives with huge lines, I decided to click to learn more and I ended up installing it.

When using it on a day-to-day basis, I realized that it was really powerful, even the parts that I was going to type, before starting it already suggested to me, both creating code and creating an article for the blog, this auto-complete is TabNine.

Introduction

Tabnine is a code auto-complete that uses Machine Learning to help you write code faster. TabNine uses the language documentation to infer the name of this function, return type and arguments and if you are writing text, it uses forms commonly used by texts and by yourself to help you with the most accurate alternatives.

TabNine is available for:

You can use it FREE for 14 days with the Trial Version. However, after 14 days it will continue to function normally, the difference being that additional functions, which I didn’t particularly notice, will not be available. These differences can be seen here.

Installing on Vim

The version for Vim is based on YouCompleteMe and to add it, you can use Vundle:

  • Add to your ~/.vimrc:
Plugin 'zxqfl/tabnine-vim'
  • And install:
:PluginInstall

Or you can also install it in the vanilla way:

  • Clone with Git:
git clone --depth 1 https://github.com/zxqfl/tabnine-vim
  • And add to your ~/.vimrc:
set rtp+=~/tabnine-vim

Replace the full path with the one you cloned.

See TabNine in action below:

TabNine

Conclusion

I really intend to get the paid version, as I thought that the auto-complete of my Vim was even faster and much more complete. Remembering that this article is not a paid post, I daily reject proposals for paid posts when I don’t believe in the product. But TabNine, besides being a quality product, remember that you can use it normally even after the trial period.

Thanks and share this post on your social networks!


vim programming editors


Share



Comments