diff options
author | 2012-07-21 14:12:27 -0400 | |
---|---|---|
committer | 2012-07-21 14:12:27 -0400 | |
commit | 7db3af04cffe78db907d90330adf9929fa4cab32 (patch) | |
tree | 2b21d3be0700ab26e3efb1c9ba9ceee64e86db52 /doc/14_Appendix.md | |
parent | 03f166897801c29e9357bce3214f02502eb7f252 (diff) | |
download | textadept-7db3af04cffe78db907d90330adf9929fa4cab32.tar.gz textadept-7db3af04cffe78db907d90330adf9929fa4cab32.zip |
More Lua code cleanup and API changes.
Diffstat (limited to 'doc/14_Appendix.md')
-rw-r--r-- | doc/14_Appendix.md | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/doc/14_Appendix.md b/doc/14_Appendix.md index f577b0e6..3f86a43f 100644 --- a/doc/14_Appendix.md +++ b/doc/14_Appendix.md @@ -355,13 +355,31 @@ projects re-define or define their own search paths. `_M.textadept.editing.prepare_for_save()` moved directly into an event handler and cannot be called separately anymore. -##### `session` +##### Sessions `_M.textadept.session.prompt_load()` and `_M.textadept.session.prompt_save()` functionality has been moved into [`_M.textadept.session.load()`][] and [`_M.textadept.session.save()`][]. Therefore, replace all instances of `prompt_load` and `prompt_save` with `load` and `save` respectively. +[`_M.textadept.session.load()`]: api/_M.textadept.session.html#load +[`_M.textadept.session.save()`]: api/_M.textadept.session.html#save + +##### Adeptsense + +`_M.textadept.adeptsense.complete_symbol()` and +`_M.textadept.adeptsense.show_documentation()` functionality has been moved into +[`_M.textadept.adeptsense.complete()`][] and +[`_M.textadept.adeptsense.show_apidoc()`][]. Therefore, replace all instances +of `complete_symbol` and `show_documentation` with `complete` and `show_apidoc`. + +[`_M.textadept.adeptsense.complete()`]: api/_M.textadept.adeptsense.html#complete +[`_M.textadept.adeptsense.show_apidoc()`]: api/_M.textadept.adeptsense.html#show_apidoc + +##### `user_dofile` + +`_G.user_dofile()` was removed. Use `dofile(_USERHOME..'/file.lua')` instead. + ##### `gtkmenu` `gui.gtkmenu()` was renamed to `gui.menu()`. Therefore, replace all instances of |