Hello, I use Ubuntu 18.04, and am trying to install the Geany Debugger plugin. However, when I checked the terminal, I see this. Is there a way to fix this, or is this intentional?
![image](https://user-images.githubusercontent.com/59266886/71492371-aa474880-2804-11ea-8764-74e0495a39bd.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-plugins/issues/938
Geany's markdown syntax highlighting (without the markdown plugin) is confused, when image link without title is used:
```
![](media\image21.png)
```
All the following text is highlighted bold (same as the link itself).
![md1](https://user-images.githubusercontent.com/1393254/109849915-38615f00-7c52-11eb-9185-7f63af7c3b81.png)
Also the following markdown syntax is ignored - see ```*Obecné*``` is not in italics.
When I fill in some title to image link
```
![abc](media\image21.png)
```
then the highlighting became correct (i.e. only link itself is bold).
![md2](https://user-images.githubusercontent.com/1393254/109849989-4b742f00-7c52-11eb-90d3-83d4109e5f25.png)
Also the following markdown syntax is ok then (*```*Obecné*```* **is** in italics).
The correct behavior is to highlight bold only the link even if its title is empty.
--
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/1070
Markdown freezes geany for about 10s on my Win10 system when starting up. I've verified that disabling/enabling markdown is what's causing the delay.
--
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/519
```
+ cd geany-1.37.1
+ autoreconf -fiv
autoreconf: export WARNINGS=
autoreconf: Entering directory '.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal --force -I m4
autoreconf: configure.ac: tracing
autoreconf: running: libtoolize --copy --force
libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, 'build-aux'.
libtoolize: copying file 'build-aux/ltmain.sh'
libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'.
libtoolize: copying file 'm4/libtool.m4'
libtoolize: copying file 'm4/ltoptions.m4'
libtoolize: copying file 'm4/ltsugar.m4'
libtoolize: copying file 'm4/ltversion.m4'
libtoolize: copying file 'm4/lt~obsolete.m4'
autoreconf: running: intltoolize --copy --force
ERROR: 'IT_PROG_INTLTOOL' must appear in configure.ac for intltool to work.
autoreconf: error: intltoolize failed with exit status: 1
```
BTW: Looks like geany is using a lot of custom macros which cold be replaced by standard one.
--
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/2771
Hi, I'm looking for a way to copy the file path of the currently opened file either in the File menu or right-clicking the file tab name. I wonder if it is possible to do a plugin for that or if it requires a change in the core, or even if this feature already exists and I don't know where.
Why I need that?
To simplify attaching files to chats/emails where I finished the edition and to avoid browsing all the way inside the other program.
--
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/2770
> @ftrebien the "instant save" is intended for temporary files, if you want a file to be permanent it should be saved to a suitable location with a sensible name. Also no matter where it is saved, if the system crashes or is rebooted with Geany open there is no guarantee that the file is saved.
I often brainstorm and take research notes using plain text documents, and this is sometimes for complex problems that are not very high priority, so the brainstorm/research is not finished at once.
It would be best to have a feature such as LibreOffice's file recovery, which works even for unsaved new documents.
--
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/640#issuecomment-804226988
It was actually pretty easy to implement using `g_mkstemp()` as done in #2769.
The directory for instantly saved files can then be configured and if not configured, the default temporary directory is used, as before.
I added a note in the plugin's preferences that the user is responsible for cleaning up the created files.
--
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/640#issuecomment-803855295
@ftrebien the "instant save" is intended for temporary files, if you want a file to be permanent it should be saved to a suitable location with a sensible name. Also no matter where it is saved, if the system crashes or is rebooted with Geany open there is no guarantee that the file is saved.
The plugin uses a portable Glib function to create the unique filename in the system temporary directory, so it works on Windows and macos. All this would have to be replicated in the plugin. Pull requests are welcome.
Also if the files are saved in some non-temporary location then they will not be deleted and will continue to accumulate. You would have to delete them manually, but since they have random names you won't know which ones to delete.
--
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/640#issuecomment-803674545