All Projects → prabirshrestha → asyncomplete-gocode.vim

prabirshrestha / asyncomplete-gocode.vim

Licence: other
provides go autocomplete for asyncomplete.vim via gocode

Programming Languages

Vim Script
2826 projects

Projects that are alternatives of or similar to asyncomplete-gocode.vim

Ctags
A maintained ctags implementation
Stars: ✭ 4,768 (+27947.06%)
Mutual labels:  code-completion
Intrinsics Dude
Opensource Visual Studio extension for compiler instrinsics in C/C++
Stars: ✭ 44 (+158.82%)
Mutual labels:  code-completion
Company Mode
Modular in-buffer completion framework for Emacs
Stars: ✭ 1,854 (+10805.88%)
Mutual labels:  code-completion
Easyclangcomplete
💥 Robust C/C++ code completion for Sublime Text 3
Stars: ✭ 537 (+3058.82%)
Mutual labels:  code-completion
Vscode Intelephense
PHP intellisense for Visual Studio Code
Stars: ✭ 872 (+5029.41%)
Mutual labels:  code-completion
Clj Suitable
ClojureScript "IntelliSense" support for JS objects and their properties/methods. Via figwheel and Emacs CIDER.
Stars: ✭ 82 (+382.35%)
Mutual labels:  code-completion
Jet
Type safe SQL builder with code generation and automatic query result data mapping
Stars: ✭ 373 (+2094.12%)
Mutual labels:  code-completion
Codeigniter Phpstorm
PhpStorm Code Completion to CodeIgniter
Stars: ✭ 194 (+1041.18%)
Mutual labels:  code-completion
I18nplugin
Intellij idea i18next support plugin
Stars: ✭ 43 (+152.94%)
Mutual labels:  code-completion
Antlr4 C3
A grammar agnostic code completion engine for ANTLR4 based parsers
Stars: ✭ 135 (+694.12%)
Mutual labels:  code-completion
Youcompleteme
A code-completion engine for Vim
Stars: ✭ 23,518 (+138241.18%)
Mutual labels:  code-completion
Asyncomplete.vim
async completion in pure vim script for vim8 and neovim
Stars: ✭ 654 (+3747.06%)
Mutual labels:  code-completion
Syntaxmeets
Syntaxmeets. Create rooms 🏠 Call your friends 👬🏼 Sip Chai, ☕ Chat, Create, and Code👨‍💻. A coding platform to code simultaneously 🚀 with your friends and design your algorithms on SyntaxPad.💫✨
Stars: ✭ 110 (+547.06%)
Mutual labels:  code-completion
Robe
Code navigation, documentation lookup and completion for Ruby
Stars: ✭ 525 (+2988.24%)
Mutual labels:  code-completion
Brackeys Ide
👨‍💻 Brackeys IDE is a fast and free multi-language code editor for Android.
Stars: ✭ 154 (+805.88%)
Mutual labels:  code-completion
Asm Dude
Visual Studio extension for assembly syntax highlighting and code completion in assembly files and the disassembly window
Stars: ✭ 3,898 (+22829.41%)
Mutual labels:  code-completion
Completor.vim
Async completion framework made ease.
Stars: ✭ 1,158 (+6711.76%)
Mutual labels:  code-completion
Crane
PHP Intellisense/code-completion for VS Code
Stars: ✭ 236 (+1288.24%)
Mutual labels:  code-completion
Nox
Nox is a lightweight, high-performance LSP client for Emacs
Stars: ✭ 181 (+964.71%)
Mutual labels:  code-completion
Ycmd
A code-completion & code-comprehension server
Stars: ✭ 1,575 (+9164.71%)
Mutual labels:  code-completion

Go source for asyncomplete.vim via gocode

Provide Go autocompletion source for asyncomplete.vim via gocode

Installing

Plug 'prabirshrestha/asyncomplete.vim'
Plug 'prabirshrestha/asyncomplete-gocode.vim'

Registration

call asyncomplete#register_source(asyncomplete#sources#gocode#get_source_options({
    \ 'name': 'gocode',
    \ 'allowlist': ['go'],
    \ 'completor': function('asyncomplete#sources#gocode#completor'),
    \ 'config': {
    \    'gocode_path': expand('~/go/bin/gocode')
    \  },
    \ }))

Note: config is optional. gocode_path defaults to gocode i.e., gocode binary should exist in the PATH if config is not specified.

Credits

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].