[Github-comments] Re: [geany/geany] Bad owner or permissions on /etc/ssh/ssh_config.d/ Could not read from remote repository. (Issue #3679)

2023-11-08 Thread James E. Kemp via Github-comments
I will try and layer Geany using rpm-ostree and see if that makes a difference. 
There are post on Reddit within a few days speaking about the same error 
message using SSH on Fedora Silverblue. 

Thanks for the responses.

-- 
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/3679#issuecomment-1803220856
You are receiving this because you are subscribed to this thread.

Message ID: 

[Github-comments] Re: [geany/geany] Bad owner or permissions on /etc/ssh/ssh_config.d/ Could not read from remote repository. (Issue #3679)

2023-11-08 Thread James E. Kemp via Github-comments
After running flatpak run org.geany.Geany, switching to a git folder and 
running 'git pull' in the intergrated terminal I get the same error message:

Bad owner or permissions on /etc/ssh/ssh_config.d/50-redhat.conf
fatal: Could not read from remote repository.

Why it is looking in that folder and file for authentication, which do exist, 
i.e. 50-redhat.conf, I don't know.


-- 
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/3679#issuecomment-1803206457
You are receiving this because you are subscribed to this thread.

Message ID: 

[Github-comments] Re: [geany/geany] Bad owner or permissions on /etc/ssh/ssh_config.d/ Could not read from remote repository. (Issue #3679)

2023-11-08 Thread James E. Kemp via Github-comments
Well, it's a flatpak, but I'll give it a try.


-- 
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/3679#issuecomment-1803203169
You are receiving this because you are subscribed to this thread.

Message ID: 

[Github-comments] [geany/geany] Bad owner or permissions on /etc/ssh/ssh_config.d/ Could not read from remote repository. (Issue #3679)

2023-11-08 Thread James E. Kemp via Github-comments
Hello everyone,

There is a problem while trying to use the integrated terminal. I have bash as 
shell. When using 'git push' or 'git pull,' I get an error message:

Bad owner or permissions on /etc/ssh/ssh_config.d/50-redhat.conf
fatal: Could not read from remote repository.

When I use git status it seems to read the remote repository, although I have 
GitHub return:
On branch main
Your branch is up to date with 'origin/main'. 

When in fact it's not 'up to date'

I'm using Fedora Linux 39 Silverblue with Geany 2.0

All permissions are correct in my .ssh folders and the files within that 
folder. Everything works using external terminal, or other code editors. I 
prefer to use Geany.

Any suggestions? 



-- 
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/3679
You are receiving this because you are subscribed to this thread.

Message ID: 

Re: [Github-comments] [geany/geany] Blank extra line displayed for files with terminating newline (#2727)

2021-01-12 Thread James Shorthouse
I understand that this is a subjective issue, so perhaps it could be a 
configuration option (like automatically adding a terminating newline on save 
is)?

I think there are valid arguments for either side. I know there are many other 
IDEs that behave the same was as Geany currently does, but in my personal 
opinion they behave incorrectly. 

Early text editors such as Vim and Emac displayed files with lines according to 
POSIX. It was the newer IDEs that decided to come along and break this long 
standing convention, and thereby causing all of this confusion. If they had 
just stuck to the POSIX-correct interpretation of newlines as Vim and Emacs do 
then I think there would be no confusion and debate around terminating newlines.

>The behaviour of Geany is self consistent, if you move the cursor after the 
>newline it goes to the start of the next line.

I'd argue this isn't consistent at all because the last "line" isn't a line at 
all (according to POSIX). Trying to move the cursor past the last line with 
text shouldn't go anywhere.

>vscode

You are correct that vscode behaves the same way as geany by default, but it 
also has a configuration option to hide the last line 
(`editor.renderFinalNewline`).

In summary I can understand why people would want the editor to show lines this 
way, but there are also many people who don't. As previously explained the 
current behaviour is inconsistent with basically all long-standing unix tools, 
from inspecting a file with `vim` or `wc -l` is appears that geany is adding 
blank lines. The default behaviour can be kept but I would very much appreciate 
an option to hide the final line if possible.

-- 
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/2727#issuecomment-758770397

[Github-comments] [geany/geany] Blank extra line displayed for files with terminating newline (#2727)

2021-01-11 Thread James Shorthouse
If I open a newline terminated file in geany extra blank line is displayed:

![Screenshot_2021-01-11_19-50-14](https://user-images.githubusercontent.com/18244032/104231328-b2d9e380-5446-11eb-8f43-e61710d8e325.png)

This is incorrect according to the POSIX specification of a file, in which all 
lines should be newline terminated. From looking at how geany presents the file 
it would appear that the file has 6 lines with the final line being empty, when 
it actually only has 5 newline terminated lines.

`wc` correctly reports only 5 lines in this file:

![Screenshot_2021-01-11_19-58-30](https://user-images.githubusercontent.com/18244032/104231821-68a53200-5447-11eb-94bf-bb4511b6054d.png)

And vim correctly only displays 5 lines:

![Screenshot_2021-01-11_19-59-12](https://user-images.githubusercontent.com/18244032/104231908-81ade300-5447-11eb-9332-0eefe244b49c.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/2727

Re: [Github-comments] [geany/geany] Is it possible to color keywords and types differently? (#1798)

2018-03-11 Thread james
https://github.com/geany/geany/blob/master/data/filedefs/filetypes.c

What I meant is that in this file, C types like int char etc are in the same 
category that if for while etc.

I am creating my own color scheme, but I am using the default filedefs.

-- 
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/1798#issuecomment-372132526

[Github-comments] [geany/geany] Is it possible to color keywords and types differently? (#1798)

2018-03-10 Thread james


-- 
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/1798

Re: [Github-comments] [geany/geany] Any documentation about color scheme conf files? (#1797)

2018-03-10 Thread james
Spent some time before finding this, is it in the wiki?

-- 
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/1797#issuecomment-372024321

Re: [Github-comments] [geany/geany] Any documentation about color scheme conf files? (#1797)

2018-03-10 Thread james
Closed #1797.

-- 
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/1797#event-1514600819

Re: [Github-comments] [geany/geany] Any documentation about color scheme conf files? (#1797)

2018-03-10 Thread james
https://geany.org/manual/dev/#id206

-- 
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/1797#issuecomment-372024292

[Github-comments] [geany/geany] Any documentation about color scheme conf files? (#1797)

2018-03-10 Thread james
I see true/false tags here and there, what do they do? I did dome google and 
found nothing.

Any theme which explains all parameters?

-- 
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/1797