use treeview_position=800 move side bar to left
--
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/1995
This pull request is heavily based on #645 from which it borrows the majority of the changes.
The main improvement is that this one doesn't break compatibility with GTK2 (there are macros which select the correct code path accordingly).
I also removed some cosmetic-only changes to maintain the differences as small as possible and provided a corrected code for console font selection (which was just commented out in the original pull request).
This was successfully tested on Centos 7.5 with stock development packages.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany-plugins/pull/790
-- Commit Summary --
* Ported the 'Debugger' plugin to GTK3 while maintaining compatibility with GTK2.
-- File Changes --
M build/debugger.m4 (5)
M debugger/src/btnpanel.c (25)
M debugger/src/cell_renderers/cellrendererbreakicon.c (73)
M debugger/src/cell_renderers/cellrendererbreakicon.h (11)
M debugger/src/cell_renderers/cellrendererframeicon.c (62)
M debugger/src/cell_renderers/cellrendererframeicon.h (7)
M debugger/src/cell_renderers/cellrenderertoggle.c (9)
M debugger/src/dconfig.c (68)
M debugger/src/debug.c (49)
M debugger/src/dpaned.c (6)
M debugger/src/gui.c (4)
M debugger/src/plugin.c (4)
M debugger/src/stree.c (4)
M debugger/src/tpage.c (84)
-- Patch Links --
https://github.com/geany/geany-plugins/pull/790.patchhttps://github.com/geany/geany-plugins/pull/790.diff
--
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/pull/790
When "Document -> Line Breaking" is turned on, and user types cyrillic symbols and words and reaches assumed end of line (72 chars by default), Geany breaks the line, but not at the last word. While typing english symbols and words, line breaking works perfectly.
Screenshot with bug (cyrillic words)
![geany_bug_cyrillic](https://user-images.githubusercontent.com/6756060/45754463-31d2fe80-bc35-11e8-84f9-1781e0ecce74.PNG)
Screenshot without bug (english words)
![geany_no_bug_english](https://user-images.githubusercontent.com/6756060/45754522-4f07cd00-bc35-11e8-8e4c-8839e267839c.PNG)
This bug reproduces in Geany 1.33 on Windows 7 and Geany 1.28 on Debian 8 Jessie.
geany 1.28 ((собрано 2016-11-01 или позднее)GTK 2.24.25, GLib 2.42.1)
--
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/1958
>From [Geany #1959](https://github.com/geany/geany/issues/1959):
I think it's not Geany’s task: adding this additional functionality to the plugin is more logical. And we can use existing plugins, in this case we have all power of Lua or Python (GeanyLua, GeanyPy, Peasy).
"Open selected file" (Ctrl+Shift+O) is a function ```src/document.c:on_menu_open_selected_file1_activate()```, I wrote a Lua script https://pastebin.com/JuvRhRRu (last version), but it's too big :)
Well, I decided that it is logical to hang this task on the plugin, entirely: https://pastebin.com/TiL8wMeH But one problem: function ```src/utils.c:utils_tidy_path()``` is not available for plugins. Yes, I can just copy this function to plugin, but it's somehow stupid, I think that function ```utils_tidy_path()``` can be to add to list of functions when available for plugins. Or maybe not (bump ABI and other) :)
Function like as ```glspi_selfile()``` would be useful in other non-specific (i.e. for general purpose) plugins too - GeanyPy, Peasy. Or maybe writing Lua- or Python-script as a separate module is the best solution. I don't know now.
Any opinions? Ideas?
--
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/786
The auto-close brackets does work only for the first outer brackets (parenthesis,curly braces,square brackets), if one wants to have further brackets inside they are not auto-closed. It would be great if auto-closing where possible for any number of times and depth inside other same-brackets.
The following will happen if want 2 times brackets inside each other:
[[]
(()
{{}
it would be great if it could happen like this:
[[]]
(())
{{}}
---
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/1041
Hi,
I'm currently having the following error message on Windows when trying to use Geany for a python script:
>
> '\\foo.com\01-DEV\TOTO'
> CMD.EXE was started with the above path as the current directory.
> UNC paths are not supported. Defaulting to Windows directory.
> '\\foo.com\01-DEV\TOTO'
> CMD does not support UNC paths as current directories.
> C:\Users\rsentiesmartinelli\Documents\Anaconda2\python.exe: can't open file 'launch.py': [Errno 2] No such file or directory
>
>
> ------------------
> (program exited with code: 2)
>
> Press any key to continue . . .
Is there anyway to fix that? I love Geany on GNU/Linux and it would be great to be able of using it on Windows.
Thanks,
--
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/1963
Latest nightly (10-19-2018) from `https://nightly.geany.org/win32/`
Installed with the instructions on that page of:
````
Usage:
Just extract this zip archive into your regular Geany installation
directory and start Geany. The About dialog should mention the
revision number in the header which was used when creating these files.
````
I receive this error, and Geany refuses to launch:
![snag_10-19-2018_17-10-32](https://user-images.githubusercontent.com/9301483/47246168-e3f41680-d3eb-11e8-9246-0769b43a7ea8.png)
Prior to extracting today's nightly zip over the 1.31 install as instructed, Geany 1.31 opened fine and if I uninstall, remove the entire Geany folder, and reinstall 1.31, returns to opening fine. Only with the new binaries overlaid does it refuse to even launch.
I know nightlies are "unsupported" but thought it was worth opening an issue if one won't even open. :)
--
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/1979