Skip to content

Provides an emacs auto-complete source for the Dscanner tool

Notifications You must be signed in to change notification settings

jmaschme/ac-dscanner

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 

Repository files navigation

Overview

ac-dscanner provides a source for the emacs auto-complete extension that uses the Dscanner tool.

ac-dscanner currently depends upon two pull requests that have not been merged into the main Dscanner product.

Requirements

  • auto-complete
  • Dscanner
  • yasnippet (optional)

Setup

To use, you will first need to add d-mode to the list of modes supported by auto-complete.

(add-to-list 'ac-modes 'd-mode)

Then add something like the following to your emacs configuration file:

(require 'ac-dscanner)
(defun ac-d-mode-setup ()
  (setq ac-sources (append '(ac-source-dscanner ac-source-yasnippet) ac-sources))
  (global-auto-complete-mode t))
(add-hook 'd-mode-hook 'ac-d-mode-setup)

About

Provides an emacs auto-complete source for the Dscanner tool

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published