Selecting "new (with template)" should probably present an option for a perl script template.
--
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/2224
`configure --help` shows that the doxygen api-docs aren't enabled by default. But at least for me, they are being generated by default.
I'm afraid to admit that after looking at https://github.com/geany/geany/blob/master/m4/geany-doxygen.m4 I don't know how to fix that.
--
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/2189
In the directory settings it is now possible to choose between a workbench or a git file filter. The later is new and lets git decide which files to display depending on the contents of the ```.gitignore``` file.
This also adds a new function to the utils-lib called ```gp_filelist_scan_directory_callback()```.
See this example screenshot:
![DirectorySettingsWithGitOption](https://user-images.githubusercontent.com/9009011/60295870-106e1400-9925-11e9-9764-576a812ef0ec.png)
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany-plugins/pull/879
-- Commit Summary --
* workbench: added option to let git decide which files to display
-- File Changes --
M build/workbench.m4 (3)
M utils/src/filelist.c (109)
M utils/src/filelist.h (5)
M workbench/README (8)
M workbench/src/Makefile.am (1)
M workbench/src/dialogs.c (225)
M workbench/src/dialogs.h (2)
M workbench/src/plugin_main.c (9)
M workbench/src/popup_menu.c (2)
M workbench/src/utils.c (13)
M workbench/src/utils.h (1)
M workbench/src/wb_project.c (318)
M workbench/src/wb_project.h (9)
-- Patch Links --
https://github.com/geany/geany-plugins/pull/879.patchhttps://github.com/geany/geany-plugins/pull/879.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/879
When I open a new file and start typing, the visual line representing the cursor starts moving further away from the place where it is actually located. I can click somewhere and the line will move there, but when I start typing it is offset again.
[Here's a Screen recording that shows the issue](https://giant.gfycat.com/FragrantGlitteringLeech.webm)
I'm using Arch Linux with xfce 4.14pre2 and the Mate-dark GTK theme, in case any of that matters.
--
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/2217
- CUDA/nvcc-compiler does not generate errors in standard format. #2213
- Having this regular expression solves the problem.
- Now, clicking on the error does take the cursor to that line number.
Let me know if this is okay. It is my 2nd PR ever. :-)
Thanks
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/2218
-- Commit Summary --
* Updated error_regex in filetypes.CUDA.conf
-- File Changes --
M data/filedefs/filetypes.CUDA.conf (2)
-- Patch Links --
https://github.com/geany/geany/pull/2218.patchhttps://github.com/geany/geany/pull/2218.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/pull/2218
when you reduce directory in the sidebar, hide equivalent tabs in the editor.
in the logic that each directory is a project, would allow filtering the editor's tabs with the projects of interest.
--
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/2216
In large C files I use bookmarks to organize code in sections marked by conments that describe what the cose does.
Lately I started to write such comments in markdown, so that I get something similar to literate haskell but in C.
However the bookmarks set at the beginning of each section are not preserved when I get changes from the git repository that other colleagues committed.
Given that these bookmarks are always marked by a new markdown header in a comment I'd like to have them automatically detected on file open.
That is: if the line match a regex, but a bookmark there.
--
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/654