I use macOS High Sierra (10.13.2) and Geany 1.32.
I have configured Geany to use the French l10n by creating an empty file ``~/.config/geany/use_locale``.
The Geany interface is now in French. Great.
My problem is that in Geany LANG is defined as "fr" and LC_ALL is defined as "" (nothing). I can see that by executing in the Geany Terminal window:
```
[rousseau:~] $ echo $LANG
fr
[rousseau:~] $ echo $LC_ALL
```
I have configured the lint menu to do: ``pep8 --max-line-length=80 "%f"`` and in the Compilateur window I get:
```
pep8 --max-line-length=80 "dé.py" (dans le dossier : /Users/rousseau/Documents/Sources/Python)
Traceback (most recent call last):
File "/usr/local/bin/pep8", line 11, in <module>
sys.exit(_main())
File "/usr/local/lib/python3.6/site-packages/pep8.py", line 2134, in _main
report = pep8style.check_files()
File "/usr/local/lib/python3.6/site-packages/pep8.py", line 1842, in check_files
runner(path)
File "/usr/local/lib/python3.6/site-packages/pep8.py", line 1854, in input_file
return fchecker.check_all(expected=expected, line_offset=line_offset)
File "/usr/local/lib/python3.6/site-packages/pep8.py", line 1619, in check_all
return self.report.get_file_results()
File "/usr/local/lib/python3.6/site-packages/pep8.py", line 1750, in get_file_results
'code': code, 'text': text,
UnicodeEncodeError: 'ascii' codec can't encode character '\xe9' in position 1: ordinal not in range(128)
Compilation échouée.
```
If I hack ``/Applications/Geany.app/Contents/MacOS/geany`` to add the line:
```
LC_ALL=fr_FR.UTF-8
```
Then Geany works correctly and I get the expected output:
```
pep8 --max-line-length=80 "dé.py" (dans le dossier : /Users/rousseau/Documents/Sources/Python)
dé.py:30:1: E302 expected 2 blank lines, found 0
Compilation échouée.
```
The problem is caused by the accent in the source code file: ``dé.py``. If I rename the file to ``de.py`` then I do not have the problem.
I can also define LANG=fr_FR.UTF-8 instead of LC_ALL for the same result.
What is important is to add the ".UTF-8" extension.
--
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/1732
@scriptum, ooops, sorry this fell through the cracks.
@kugel- can you or @scriptum make a version without conflicts and I will try to find time to test it since I now use the documents list instead of notebook tabs all the time.
>From a quick look at the code its ok, but I noticed there are a number of `/**` comments that IIUC doxygen will find and add to the API manual which we don't want, needs fixing.
@scriptum The documentation looks understandable which is fine.
@kugel- I don't care which is the default option. Do you use the feature? On gtk2 or 3?
--
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/259#issuecomment-361499337
Feature request: "Display Grid Pattern" support.
Both gEdit (optional) and gnome-Builder (by default) support displaying a subtle grid pattern in the editor area.
The pictures below shows the look with different solarized flavors. I understand this is a matter of taste but since this became Builder's default I guess this is popular with devs; I don't use builder but I find myself using it in gEdit all the time and I miss it in Geany.
I couldn't find any open or closed feature requests on geany so here it goes. Some research shows this was a feature added by gtksourceview.
![image](https://user-images.githubusercontent.com/652673/33519213-709e2b44-d770-11e7-9b0d-5fb7e147647e.png)
![image](https://user-images.githubusercontent.com/652673/33519253-5e057de2-d771-11e7-81a0-06d87dd4ab3f.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/issues/1704
@b4n @frlan @elextr @codebrainz I would like to merge this, and additionally enable the new tree view by default. Please add your input and review.
--
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/259#issuecomment-361493914
This new feature shows a color tip if the mouse is hovered over a color value like e.g. #fff or #ffffff. If a color value is double clicked, then the Color Chooser is started. Both (showing the color tip and starting the Color Chooser) can be enabled and disabled via the plugin preferences. See #663.
I hope it can be added to the AddOns plugin as I think it's not worth writing a new complete own plugin for it.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany-plugins/pull/664
-- Commit Summary --
* addons: show color tip and start Color Chooser with double click
* addons: fixed typo.
-- File Changes --
M addons/src/Makefile.am (3)
M addons/src/addons.c (42)
A addons/src/ao_colortip.c (397)
A addons/src/ao_colortip.h (51)
-- Patch Links --
https://github.com/geany/geany-plugins/pull/664.patchhttps://github.com/geany/geany-plugins/pull/664.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/664