aboutsummaryrefslogtreecommitdiff
path: root/doc/manual/6_Startup.md
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2010-05-07 15:15:11 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2010-05-07 15:15:11 -0400
commit92457d0b8c54e683eb320c425ffa805d7bba3c58 (patch)
tree542e9c562222adc5b0dd1954867166afb1bbe8d6 /doc/manual/6_Startup.md
parentd8c61a6a451bb70efaee7b83e753de904b277ba4 (diff)
downloadtextadept-92457d0b8c54e683eb320c425ffa805d7bba3c58.tar.gz
textadept-92457d0b8c54e683eb320c425ffa805d7bba3c58.zip
Fixed manual error for example ~/.textadept/init.lua; doc/manual/6_Startup.md
Diffstat (limited to 'doc/manual/6_Startup.md')
-rw-r--r--doc/manual/6_Startup.md7
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'