aboutsummaryrefslogtreecommitdiffhomepage
path: root/init.lua
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2018-01-04 08:58:41 -0500
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2018-01-04 08:58:41 -0500
commit21cec1cf4a5f694f5c910608589adc2c5b419836 (patch)
tree167c777674b07ded83426f11aca57de85d14515a /init.lua
parent3300fda29d15c4c6a1f25454b72a5ed0db5dc8a3 (diff)
Print compatibility messages instead of showing a dialog box.
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/init.lua b/init.lua
index 50698d81..74c97acd 100644
--- a/init.lua
+++ b/init.lua
@@ -253,8 +253,8 @@ buffer.wrap_mode = buffer.WRAP_NONE
buffer.accessibility = buffer.ACCESSIBILITY_DISABLED
-- Temporary compatibility notices for Textadept 10.
-function ui.set_theme(...) events.connect(events.INITIALIZED, function() ui.dialogs.ok_msgbox{title='Textadept 10 Compatibility Notice',informative_text='ui.set_theme() is now buffer.set_theme().\nPlease update your ~/.textadept/init.lua accordingly.',no_cancel=true} end) buffer.set_theme(...) end
-events.connect(events.INITIALIZED, function() if lfs.attributes(_USERHOME..'/properties.lua') then ui.dialogs.ok_msgbox{title='Textadept 10 Compatibility Notice',informative_text='~/.textadept/properties.lua is not read anymore.\nPlease move its contents to ~/.textadept/init.lua.',no_cancel=true} end end)
+function ui.set_theme(...) events.connect(events.INITIALIZED, function() ui.print('Textadept 10 Compatibility Notice: ui.set_theme() is now buffer.set_theme(). Please update your ~/.textadept/init.lua accordingly.') end) buffer.set_theme(...) end
+events.connect(events.INITIALIZED, function() if lfs.attributes(_USERHOME..'/properties.lua') then ui.print('Textadept 10 Compatibility Notice: textadept/properties.lua is not read anymore. Please move its contents to ~/.textadept/init.lua.') end end)
-- Load user init file, which may also define default buffer settings.
local user_init = _USERHOME..'/init.lua'