diff options
author | 2013-09-27 21:12:05 -0400 | |
---|---|---|
committer | 2013-09-27 21:12:05 -0400 | |
commit | ef23e13ac57cf6a8bcb04ccce10d2e5b34feec06 (patch) | |
tree | 558d22791c4461fc5b765ce9ef57dd2273df73e0 /themes/dark.lua | |
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 'themes/dark.lua')
-rw-r--r-- | themes/dark.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/themes/dark.lua b/themes/dark.lua index f798b812..71bfd636 100644 --- a/themes/dark.lua +++ b/themes/dark.lua @@ -108,9 +108,11 @@ buffer:set_fold_margin_hi_colour(true, property_int['color.black']) -- Markers. local MARK_BOOKMARK = textadept.bookmarks.MARK_BOOKMARK -buffer.marker_fore[MARK_BOOKMARK] = property_int['color.black'] +--buffer.marker_fore[MARK_BOOKMARK] = property_int['color.black'] buffer.marker_back[MARK_BOOKMARK] = property_int['color.dark_blue'] -buffer.marker_fore[textadept.run.MARK_ERROR] = property_int['color.black'] +--buffer.marker_fore[textadept.run.MARK_WARNING] = property_int['color.black'] +buffer.marker_back[textadept.run.MARK_WARNING] = property_int['color.yellow'] +--buffer.marker_fore[textadept.run.MARK_ERROR] = property_int['color.black'] buffer.marker_back[textadept.run.MARK_ERROR] = property_int['color.red'] for i = 25, 31 do -- fold margin markers buffer.marker_fore[i] = property_int['color.black'] |