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
The mouse scroll button support can speed up switch between tabs.
That's was easier in previous geany versions.
--
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/issues/1778
geany 1.32 (compilado el día Jan 29 2018 conGTK 3.22.26, GLib 2.54.3)
ArchLabs Minimo
saludos!
![archlabs_2018-02-22-30_1024x768](https://user-images.githubusercontent.com/36741075/36554165-2be25b3a-17dd-11e8-891b-ee53bc567ac7.png)
--
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/issues/1779
Currently you can choose HSV and RGB to select the color. However, those don't represent the perceived colour because it's actually the srgb format.
When somebody wants to halve the brightness, he/she may halve the V value in HSV and wonders why it looks so dark or doesn't notice the problem at all.
I'd like to be able to change the luma value or something similar.
[Here's more information about the gamma error](http://www.ericbrasseur.org/gamma.html)
--
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/issues/1777
I use archivemount ( FUSE Filesystem in Userspace) to mount an archive, with an empty directory as mountpoint. Writing to that mountpoint is handled transparently by archivemount: changes in the filesystem are visible immediately, but only written back to the archive on unmount.
Geany can open both files that pre-existed in the mounted archive, and files that are changed or newly created after mounting the archive to the mountpoint.
But Geany's 'File/Save' operations are lost. You get the message "11:35:28: File ... saved.", without any error message, but the change is lost, the file is not changed, not even it's timestamp.
When you save an existing file with 'File/Save as' to it's existing name, the change is lost as with 'File/Save'.
'File/Save as' to a new filename works without problems: the new file is created, and it's contents saved.
I tried several other programs (command line, Libreoffice Writer, mousepad) with and during the same mount, and they have no problem saving existing nor new files. I suppose it is a Geany problem.
--
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/issues/1774
I was having this trouble today and found one potential solution is to use an external command for printing. Go to `Edit > Preferences > Printing` to enable it. This is the command I use:
`lpr -P Brother_PJ-723 -o media=Letter -o cpi=12 -o lpi=7 %f`
See [lpr](http://man7.org/linux/man-pages/man1/lpr.1.html) for more info on how to use it.
--
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/issues/617#issuecomment-366862421