390 B
390 B
#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)
-