diff options
author | 2012-08-29 21:33:07 -0400 | |
---|---|---|
committer | 2012-08-29 21:33:07 -0400 | |
commit | d010ca1fc74fcb2a2c36e69b710c291b9776413b (patch) | |
tree | f067780566641fd5dbf147cf3e5f6fd564725fd1 /doc/14_Appendix.md | |
parent | 7e947257a46ec070312773f6ea6a63f83f4f9a26 (diff) | |
download | textadept-d010ca1fc74fcb2a2c36e69b710c291b9776413b.tar.gz textadept-d010ca1fc74fcb2a2c36e69b710c291b9776413b.zip |
Updated Migration Guide; doc/14_Appendix.md
Diffstat (limited to 'doc/14_Appendix.md')
-rw-r--r-- | doc/14_Appendix.md | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/14_Appendix.md b/doc/14_Appendix.md index 492d1ad7..67f318d7 100644 --- a/doc/14_Appendix.md +++ b/doc/14_Appendix.md @@ -405,6 +405,15 @@ of `complete_symbol` and `show_documentation` with `complete` and `show_apidoc`. `gui.gtkmenu()` was renamed to `gui.menu()`. Therefore, replace all instances of `gui.gtkmenu` with `gui.menu`. +##### Bookmarks + +`_M.textadept.bookmarks.add()` and `_M.textadept.bookmarks.remove()` were +consolidated into [`_M.textadept.bookmarks.toggle()`][]. Replace `add()` with +`toggle(true)` and `remove()` with `toggle(false)`. `toggle()` functionality +otherwise remains the same. + +[`_M.textadept.bookmarks.toggle()`]: api/_M.textadept.bookmarks.html#toggle + ### Textadept 4 to 5 Lua has been upgraded from [5.1 to 5.2][], so many scripts written for Textadept |