diff options
author | 2013-09-27 21:12:05 -0400 | |
---|---|---|
committer | 2013-09-27 21:12:05 -0400 | |
commit | ef23e13ac57cf6a8bcb04ccce10d2e5b34feec06 (patch) | |
tree | 558d22791c4461fc5b765ce9ef57dd2273df73e0 /doc/08_Preferences.md | |
parent | 235a3a04d8cf7f80823d59a8ff6ec77fbf8e61d5 (diff) | |
download | textadept-ef23e13ac57cf6a8bcb04ccce10d2e5b34feec06.tar.gz textadept-ef23e13ac57cf6a8bcb04ccce10d2e5b34feec06.zip |
Integrated compile and run commands for most languages.
Compile and run should work out of the box for most languages. Also added a
warning marker, renamed `compile_command` and `run_command` tables to
`compile_commands` and `run_commands`, respectively, and renamed `error_details`
to `error_patterns`, changing its structure to just hold patterns.
Diffstat (limited to 'doc/08_Preferences.md')
-rw-r--r-- | doc/08_Preferences.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/08_Preferences.md b/doc/08_Preferences.md index 9495a747..a6e0a09f 100644 --- a/doc/08_Preferences.md +++ b/doc/08_Preferences.md @@ -80,7 +80,7 @@ commands, load more [Adeptsense tags][], and add additional [key bindings](#Key.Bindings) and [snippets](#Snippets) (instead of in *~/.textadept/init.lua*). For example: - textadept.run.run_command.lua = 'lua5.2' + textadept.run.run_commands.lua = 'lua5.2' _M.lua.sense:load_ctags('/path/to/my/projects/tags') keys.lua['c\n'] = function() buffer:line_end() buffer:add_text('end') buffer:new_line() |