DCD/editors/textadept
Hackerpilot b4b47eacfd Implemented stdin feature 2013-08-09 17:32:43 +00:00
..
modules/dmd Implemented stdin feature 2013-08-09 17:32:43 +00:00
README.md A lot of progress 2013-08-08 23:31:25 +00:00
class.png A lot of progress 2013-08-08 23:31:25 +00:00
class.xpm A lot of progress 2013-08-08 23:31:25 +00:00
enum_dec.xpm A lot of progress 2013-08-08 23:31:25 +00:00
function.xpm A lot of progress 2013-08-08 23:31:25 +00:00
interface.xpm A lot of progress 2013-08-08 23:31:25 +00:00
keyword.xpm A lot of progress 2013-08-08 23:31:25 +00:00
module.xpm A lot of progress 2013-08-08 23:31:25 +00:00
package.xpm A lot of progress 2013-08-08 23:31:25 +00:00
struct.xpm A lot of progress 2013-08-08 23:31:25 +00:00
union.xpm A lot of progress 2013-08-08 23:31:25 +00:00
variable.xpm A lot of progress 2013-08-08 23:31:25 +00:00

README.md

#Textadept Integration

###Installation

  1. Copy the dcd.lua file into your ~/.textadept/modules/dmd/ folder

  2. Modify your ~/.textadept/modules/dmd/init.lua file:

    1. Require the dcd module

      _M.dcd = require "dmd.dcd"

    2. Register the autocomplete function

       events.connect(events.CHAR_ADDED, function(ch)
           _M.dcd.autocomplete(ch)
       end)