|
|
||
|---|---|---|
| .. | ||
| modules/dmd | ||
| README.md | ||
| class.png | ||
| class.xpm | ||
| enum_dec.xpm | ||
| function.xpm | ||
| interface.xpm | ||
| keyword.xpm | ||
| module.xpm | ||
| package.xpm | ||
| struct.xpm | ||
| union.xpm | ||
| variable.xpm | ||
README.md
#Textadept Integration
###Installation
-
Copy the dcd.lua file into your ~/.textadept/modules/dmd/ folder
-
Modify your ~/.textadept/modules/dmd/init.lua file:
-
Require the dcd module
_M.dcd = require "dmd.dcd"
-
Register the autocomplete function
events.connect(events.CHAR_ADDED, function(ch) _M.dcd.autocomplete(ch) end)
-