aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/textadept/bookmarks.lua2
-rw-r--r--modules/textadept/editing.lua2
-rw-r--r--modules/textadept/keys.lua5
-rw-r--r--modules/textadept/menu.lua2
4 files changed, 7 insertions, 4 deletions
diff --git a/modules/textadept/bookmarks.lua b/modules/textadept/bookmarks.lua
index 0b90c28a..fdf6b8b2 100644
--- a/modules/textadept/bookmarks.lua
+++ b/modules/textadept/bookmarks.lua
@@ -13,7 +13,7 @@ module('_m.textadept.bookmarks', package.seeall)
-- `0xBBGGRR` format.
-- settings
-MARK_BOOKMARK_COLOR = 0xC08040
+MARK_BOOKMARK_COLOR = 0xB3661A
-- end settings
local MARK_BOOKMARK = _SCINTILLA.next_marker_number()
diff --git a/modules/textadept/editing.lua b/modules/textadept/editing.lua
index 401a72e0..83dd1fd1 100644
--- a/modules/textadept/editing.lua
+++ b/modules/textadept/editing.lua
@@ -33,7 +33,7 @@ HIGHLIGHT_BRACES = true
AUTOINDENT = true
STRIP_WHITESPACE_ON_SAVE = true
MARK_HIGHLIGHT_BACK = buffer and buffer.caret_line_back or 0xEEEEEE
-INDIC_HIGHLIGHT_BACK = 0x4080C0
+INDIC_HIGHLIGHT_BACK = 0x4D99E6
INDIC_HIGHLIGHT_ALPHA = 100
-- end settings
diff --git a/modules/textadept/keys.lua b/modules/textadept/keys.lua
index d3bdb1ec..77f269b0 100644
--- a/modules/textadept/keys.lua
+++ b/modules/textadept/keys.lua
@@ -101,7 +101,7 @@ if not RESETTING then constantize_menu_buffer_functions() end
Windows and Linux menu key commands.
Unassigned keys (~ denotes keys reserved by the operating system):
- c: A B C H p qQ T ~ V X ) ] } * \n
+ c: A B C H p qQ ~ V X ) ] } * \n
a: aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpP QrRsStTuUvVwWxXyYzZ_ ) ] } *+-/=~~\n\s
ca: aAbBcCdDeE F jJkKlLmM N PqQ t xXy zZ_"'()[]{}<>* / ~~ \s
@@ -116,7 +116,7 @@ if not RESETTING then constantize_menu_buffer_functions() end
Mac OSX menu key commands.
Unassigned keys (~ denotes keys reserved by the operating system):
- m: A B C ~ JkK ~M p ~ tT U V Xy ) ] } * ~~\n~~
+ m: A B C ~ JkK ~M p ~ t U V Xy ) ] } * ~~\n~~
c: cC D gG H J K L oO qQ xXyYzZ_ ) ] } * / \s
cm: aAbBcC~DeE F ~HiIjJkKlL~MnN pPq~rRsStTuUvVwWxXyYzZ_"'()[]{}<>*+-/=\t\n~~
@@ -280,6 +280,7 @@ keys[not OSX and 'caV' or 'cV'] =
keys[not OSX and 'c=' or 'm='] = _buffer.zoom_in
keys[not OSX and 'c-' or 'm-'] = _buffer.zoom_out
keys[not OSX and 'c0' or 'm0'] = utils.reset_zoom
+keys[not OSX and 'cT' or 'mT'] = gui.select_theme
-- Help.
keys.f1 = { utils.open_webpage, _HOME..'/doc/manual/1_Introduction.html' }
diff --git a/modules/textadept/menu.lua b/modules/textadept/menu.lua
index 6ef28b77..ddaf9aba 100644
--- a/modules/textadept/menu.lua
+++ b/modules/textadept/menu.lua
@@ -203,6 +203,8 @@ menubar = {
{ L('Zoom In'), _buffer.zoom_in },
{ L('Zoom Out'), _buffer.zoom_out },
{ L('Reset Zoom'), utils.reset_zoom },
+ SEPARATOR,
+ { L('Select Theme...'), gui.select_theme },
},
{ title = L('Help'),
{ L('Show Manual'),