I installed geany-plugins, and activated mardown plugin.
When I create an `.md` doc like this:
```
# Test of TOC
**Contents**
1. [Introduction](#Introduction)
2. [Installation](#Installation)
# Introduction
asd;lfk asdklf ja;sldkfj a;ldfk j
(a full page like this)
# Installation
asd;lfk asdklf ja;sldkfj a;ldfk j
(a full page like this)
```
Then, in the side pane with Mardown Preview, the links in the table of contents do not work.
(In my tests ,there were many pages of text in each section, to make sure it would navigate down if the links in TOC work to work)
If I generate the `html` with `menu/tools/Export Markdown as Html...`, I get this: ( I did not change the template or any of the settings for Markdown plugin)
``` html
<html>
<head>
<style type="text/css">
body {
font-family: Serif;
font-size: 12pt;
background-color: #ffffff;
color: #000000;
}
code {
font-family: Mono;
font-size: 12pt;
}
</style>
</head>
<body>
<h1>Test of TOC</h1>
<p><strong>Contents</strong></p>
<ol>
<li><a href="#Introduction">Introduction</a></li>
<li><a href="#Installation">Installation</a></li>
</ol>
<h1>Introduction</h1>
<p>asd;lfk asdklf ja;sldkfj a;ldfk j</p>
<p>(a full page like this)</p>
<h1>Installation</h1>
<p>asd;lfk asdklf ja;sldkfj a;ldfk j</p>
<p>(a full page like this)</p>
</body>
</html>
```
When I open this in a browser (Chrome), the links in TOC don't work either.
If I edit the html so that to have a
```html
<a name="Introduction"></a>
```
besides
```html
<h1>Installation</h1>
```
then the links work, as expected.
So: is it a problem with my installation, or ...?
It's on Windows 7; I installed the plugins from https://plugins.geany.org/downloads.html
```
19:22:24: Geany INFO : GTK 2.24.32, GLib 2.54.3
19:22:24: Geany INFO : System data dir: C:\Program Files\Geany\data
19:22:24: Geany INFO : User config dir: C:\Users\Admin\AppData\Roaming\geany
19:22:25: Geany INFO : System plugin path: C:\Program Files\Geany\lib\geany
```
--
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/771
When started as `geany -n`, the file which was (in case of "Load files from the last session") or will be opened first, remains uncolored! No syntax highlighting.
Experienced with .cpp files. There was no project open. geany version is 1.32. The filetype of the colorless file is -- seemingly -- recognized. (Correctly, as "C++".)
--
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/1948
When using the split window plugin, when typing in the second window, pressing Ctrl-Z will undo in the original window instead of the selected second window.
--
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/770
Hello everybody.
My technical specifications:
```
uname -a
Linux SpSystem 4.10.0-38-generic # 42 ~ 16.04.1-Ubuntu SMP Tue Oct 10 16:32:20 UTC 2017 x86_64 x86_64 x86_64 GNU / Linux
Geany => Help => About.
Geany 1.27 (collected Apr 17 2016 or later).
geany -V
geany 1.27 ((collected Apr 17 2016 or later) GTK 2.24.30, GLib 2.48.0)
```
I installed plugins for Geany from the official Linux / GNU Mint repositories, everything is fine. I did this, because I needed to double the tags, for example in HTML. I did this with the plugin. Everything worked.
After a while I decided that I want to include the autocompletion of words. I enabled simple autocompletion through the settings, the first tick in the settings: Edit / Settings. In the settings window, select "Editor", "Autocompletion" tab, "Auto-complete code snippets" parameter).
In the future work suddenly, for the first time the editor closed. I propose it to an emergency. I ran it again. Everything worked, but when editing the file, if you get to the point where, in theory, the list with options for autocompletion may fall out, the program automatically ends without outputting any error, the window just closes (disappears).
I decided to disable autocompletion and the problem disappeared. Now I write the required code with my hands, without the possibility of an automatic add-on. The program is relatively stable. Paired tags are highlighted.
I do not know very well the terms from programming in English. I hope I clearly explained.
I decided to notify Geany developers about this issue so I am writing here. In some of the newest code editing programs (such as Atom), auto-completion usually works without lags and (or) critical errors. Geany should not fall behind, in my opinion. I hope the problem will be solved in the future.
I can provide almost any files in my system for additional information on this issue. I can conduct various tests at your request (Acceptable for me) when I have free time.
Thank you for watching.
--
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/1927
Using geany for many years, I found a bug on Windows 7 version. Note that I had 4 instances of Geany running when i found the bug.
To reproduce:
1. Create a folder;
2. Run Geany and click on "Open file";
3. Go into the previously created folder using the "Open file" window;
3. Delete the folder created in step 1
4. Alert ! Geany is not responding and increase memory consumption. We can only close it by killing the process.
Desired behavior: "Open file" window should automatically detect folder deletion and show the parent tree folder.
Using Geany version 1.33
--
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/1937
My Geany crashes on the following multiline regexp (while searching in find/replace dialogue):
^(\d+);(\d+);(\d+);SCT\n(.*?\n)*?\1;47429007;\3
Geany version 1.30.1 (built from source on 2017-06-25 with GTK 2.24.30, GLib 2.48.2
--
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/1586
Many code editors allow automatic reformatting of the code while typing, without losing the cursor position.
I often use that feature to quickly correct indentation, so that I don't need to do it by hand, or to verify that braces and parantheses are correctly placed and balanced.
Unfortunately, it seems that the only option to reformat C code in geany is to select all the text (CTRL+A) and then to pass it to the external command (astyle or indent) via CTRL+1 (or via Edit->Format->Send selection to in menu), after the command is properly defined.
It would be nice, if geany allowed repositioning the cursor to the original position (or at list to line with the same number if reformatting breaks or combines lines).
Is it possible to write a macro or script that first stores the current line number, then selects all text, passes it to the external command, and finally attempts to put the cursor to the line with the stored number?
--
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/1913