I checked the current situation and this is the result:
Plugin with image reference | Status
----------------------------------- | -------------
**addons** | OK - Image is displayed
**automark** | OK - Image is displayed
**markdown** | OK - Images are displayed
**debugger** | link to imageshack, no image displayed
**geanyvc** | link to imageshack, no image displayed
**autoclose** | dropbox - file not found
**devhelp** | link to imageshack, no image displayed
I think it is not good to rely on external sites/services for storing the images. So I suggest the following as images stored on github work and it's a save service which is controlled by the maintainers of plugins.geany.org:
- change/extend the documentation in that way that plugin maintainers who want to include images in their documentation should make this available via a PR to plugins.geany.org and then reference the file on github
- remove the old not working image references
- close this as "won't fix" (if someone wants to re-new the pictures he can update the documentation and post a PR with the image)
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/plugins.geany.org/issues/4#issuecomment-368339650
It'll be very good to have possibility to create files and directories from workbench's pane, like it's possible in Sublime Text or VSCode.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/issues/660
## General:
* Rename plugin geanylatex to latex
* utils lib: added new function 'gp_filelist_scan_directory_full() (PR #681)
## Addons:
* Show color tip and start Color Chooser with double click (PR #664)
## GeanyLua:
* Add filetype to set in geany.newfile() (PR #652)
* Add function geany.reloadconf() (PR #653)
* Fix right-trim.lua (PR #670)
* Update glspi_keycmd.h to match latest Geany version (PR #662)
* Update to match latest Geany's Scintilla API (PR #685)
## PrettyPrinter:
* Allow to pretty print a selection only (PR #683)
## Spellcheck:
* Remember 'Check while typing' setting between sessions (#667, PR #680)
* Support Enchant 2.0 and later (PR #674)
## Treebrowser:
* Fallback to "text-x-generic" icon if info lookup fails (PR #682)
## VC:
* Remember the commit dialog size (#679)
## Workbench:
* Add "Create file here..."/"Create directory here..." (PR #681)
* Renamed "folder" to "sub-directory" (PR #678)
## Internationalization:
* Updated translations: de, es, fr
--
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/geany/geany-plugins/releases/tag/1.33.0
These messages don't work, return -1 in any case. Script-example:
```lua
-- test-bookmarks.lua
--[[
SCI_MARKERADD = 2043
SCI_MARKERDELETE = 2044
SCI_MARKERGET = 2046
SCI_MARKERNEXT = 2047
SCI_MARKERPREVIOUS = 2048
]]
-- Add bookmarks for lines 5 and 10
local s = geany.scintilla(2046, 4, 1);
if (s == 0) then geany.scintilla(2043, 4, 1) end;
local s = geany.scintilla(2046, 9, 1);
if (s == 0) then geany.scintilla(2043, 9, 1) end;
-- Get next & previous line number with bookmark
local n = geany.scintilla(2047, 0, 1);
local p = geany.scintilla(2048, 9, 1);
if geany.confirm("test-bookmarks.lua",
"Next bookmark (after 0):\t" .. n ..
"\nPrevious (before 10):\t\t" .. p ..
"\n\nDo you want to delete all bookmarks?",
true) then
local h = geany.height() - 1;
for i = 0, h, 1 do
s = geany.scintilla(2046, i, 1);
-- If bookmark is exists then del
if (s ~= 0) then geany.scintilla(2044, i, 1) end;
end
end
```
What could be the problem? (I tried Geany 1.32 on Xubuntu 17.10 x64 and Geany 1.33-git on Win7x32.)
P.S. Yes, I can use the numeric ```for``` statement, but it's required send minimum one message to Scintilla for _every_ line.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/issues/706