Double asterisks in a code block indented by four spaces should be ignore, but that's not exactly the case. Play with spaces and single/double asterisks in the code block below and note the highlighting of the headings:
```
code with *asterisks **
# test *a* b
# Testing `pnpm recursive install` behavior.
```
Screencast:
![geany markdown highlight breaks](https://user-images.githubusercontent.com/33569/50580620-9d686280-0…
--
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/2029
Geany wrongly colors sequences starting with a percentage sign (%).
Program that illustrates some issues:
```
n = 1337;
w = r = 5
x = n%w + 1; # "%w " is recognised as the beginning of an array of words, like %w[ ... ]
y = n%r ; # "%r " is recognised as the beginning of a regular expression
string = %= this is a string = ; # this one is correctly colored
n %= w; # this is the most important issue, the expression is equivalent to n = n % w; but it's recognised like the previous line
print x%r # %r is also recognised like a beginning of regex, but in this case, the %= of the previous line is still not terminated (no equal sign encoutered).
```
Tested on Geany 1.33 on Linux (Debian).
--
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/2038
Several times ran into serious problems (scratching a file) because I confuse the highlight in red of the unsaved files' tab with the highlight of the currentlly displaid file. I would like to be able to inverse the parameters, that is:
have in red the tab's title of the currentlys displaid file
have inversed background for the tab of not yet saved 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/2046
Hi,
with the file browser plugin one can easily filter out files by name patterns (in a new sidebar tab named "Files" in case you don't know that). Unfortunately, the check that prevents elements added to the viewed list (`check_filtered()`) is guarded by a `if (dir)` (literally :):
https://github.com/geany/geany/blob/bf5c9eddd8a500577719af7fc7f1c1ffb8044a4…
I have not tried it but I don't expect any problems if it's applied to all elements, i.e. to directories as well. Would you accept a patch that adds 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/2075
I really love geany because its light weight and fast for writing python codes but I really hate how it handles indentation. When I send pyton code to vte **send selection to terminal** some times it throws **IndentationError: unexpected indent**. A simple example would be this function.
```
def load_data(mode='train'):
mnist=input_data.read_data_sets("MNIST/",one_hot=True)
if mode=='train':
x_train,y_train,x_valid,y_valid=mnist.train.images, mnist.train.labels,mnist.validation.images, mnist.validation.labels
return x_train,y_train,x_valid,y_valid
elif=='test':
x_test,y_test=mnist.test.images, mnist.test.labels
return x_test,y_test
```
This error occurs everywhere were I write multi-line indents and mostly happens with codes copied from elsewhere. Because of this I always have to use a second ide to correct these problems.
--
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/2098
I am running newest geany on ubuntu 18.04, sometimes when I click on the menu(File, Edit, Search,...) , they're no longer responsive. I can still use other areas as normal(e.g. editing). To get the menu items "active" again I have to restart 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/issues/2118
Closing since no follow proof-of-concept PR or plugin is forthcoming in nearly 5 years. Feel free to re-open if anyone wants to work on this some more.
--
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/307#issuecomment-479280217