diff options
author | 2010-05-07 15:15:11 -0400 | |
---|---|---|
committer | 2010-05-07 15:15:11 -0400 | |
commit | 92457d0b8c54e683eb320c425ffa805d7bba3c58 (patch) | |
tree | 542e9c562222adc5b0dd1954867166afb1bbe8d6 | |
parent | d8c61a6a451bb70efaee7b83e753de904b277ba4 (diff) | |
download | textadept-92457d0b8c54e683eb320c425ffa805d7bba3c58.tar.gz textadept-92457d0b8c54e683eb320c425ffa805d7bba3c58.zip |
Fixed manual error for example ~/.textadept/init.lua; 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' |