Hauleth
Hauleth

Reputation: 23556

Vim OmniComplete for D

Is there any Vim plugin that provide completition for D using OmniComplete? I have searched over Google but I found nothing.

Upvotes: 2

Views: 410

Answers (2)

Sho
Sho

Reputation: 41

You should try https://github.com/idanarye/vim-dutyl It provides auto-complete, goto-def, show document.

Upvotes: 1

Daan Bakker
Daan Bakker

Reputation: 6332

You could use syntax based omnicompletion, which should work as long as you have a working syntax file.

Vim should already come with a syntax file from D, starting from version 6.3 or later. If you are using an earlier version of Vim you could try this plugin.

Upvotes: 1

Related Questions