diff options
Diffstat (limited to 'doc/manual/6_Startup.md')
-rw-r--r-- | doc/manual/6_Startup.md | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/manual/6_Startup.md b/doc/manual/6_Startup.md index c494c5a1..3fc2f8e9 100644 --- a/doc/manual/6_Startup.md +++ b/doc/manual/6_Startup.md @@ -35,13 +35,14 @@ example: -- ~/.textadept/init.lua require 'ext/keys' require 'ext/find' - -- require 'ext/command_entry' -- do not load Lua command entry + require 'ext/command_entry' require 'ext/mime_types' - -- require 'ext/menu' -- do not load the menubar - require 'ext/key_commands' require 'textadept' -- bookmarks, editing, snippets, etc. + -- require 'ext/menu' -- do not load the menubar + require 'ext/key_commands' + -- my modules in ~/.textadept/modules require 'foo' require 'bar' |