Re: [Github-comments] [geany/geany] Can't see underscores on Ubuntu 20.04 (#2502)

2020-07-18 Thread elextr
@codinghedgehog-python what did you change? The recommended fix 
[above](https://github.com/geany/geany/issues/2502#issuecomment-627789435) 
doesn't change font sizes, just adds a few pixels to the spacing to fit the 
underscores.

-- 
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/2502#issuecomment-660562839

Re: [Github-comments] [geany/geany] [Bug] Geany doesn't "remember" font size when new file is created (#2552)

2020-07-18 Thread elextr
Also see #2502 pinned at the top of the issues for a workaround to the missing 
underscores.

-- 
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/2552#issuecomment-660562391

Re: [Github-comments] [geany/geany] [Bug] Geany doesn't "remember" font size when new file is created (#2552)

2020-07-18 Thread Matthew Brush
Works for me on Ubuntu and Windows.

Can you provide more information like:
* Operating system and version
* Geany and GTK/GLib version (first few lines of `Help->Debug Messages`)
* Steps to reproduce
* Whether the problem occurs using a clean config dir (`geany -c /tmp/deleteme`)

-- 
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/2552#issuecomment-660558243

[Github-comments] [geany/geany] [Bug] Geany doesn't "remember" font size when new file is created (#2552)

2020-07-18 Thread codinghedgehog-python
The title says it all. It would be nice if I could open new file in Geany and 
wouldn't
have to adjust the font size every time. The bug is now more notable than ever 
since
people have to adjust font size to see underscores.

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

[Github-comments] [geany/geany] Multiline editing ? (feature request) (#2551)

2020-07-18 Thread codinghedgehog-python
The only thing that I really miss in Geany is multiline editing. Can it be 
implemented anytime soon ? Geany became
my editor to-go and it would be awesome being able to edit multiple lines at 
the same time.

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

Re: [Github-comments] [geany/geany] Can't see underscores on Ubuntu 20.04 (#2502)

2020-07-18 Thread codinghedgehog-python
The workaround works but makes the font size super large. I can read my code 
from 5 metres away XD. So if I'm getting this right the only way to have it 
working normally like it used to, is to either go back to Ubuntu 18.04 or to 
install previous release of Geany. Correct ?

-- 
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/2502#issuecomment-660536839

Re: [Github-comments] [geany/geany] Context menu update (#2550)

2020-07-18 Thread Matthew Brush
@eht16 I was initially going to suggest making this a plugin - being unaware of 
the addons feature - but:

* It's a very small, simple and common feature that seems to be appropriate as 
a core feature.
* It would probably require more m4/bash/boilerplate code than [the entirety of 
the 
patch](https://patch-diff.githubusercontent.com/raw/geany/geany/pull/2550.diff).
* The size of this context menu is already effectively unbounded.
* Accessing this menu from the plugin API would be kludgy or require extending 
the API (as you pointed out).

That said, I'm indifferent. I won't merge unless there is consensus.



-- 
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/2550#issuecomment-660508980

Re: [Github-comments] [geany/geany] Context menu update (#2550)

2020-07-18 Thread Ru Uba
Just two things in addition to @eht16 comments

> the Addons plugin already has a similar feature 
> (https://plugins.geany.org/addons.html#copy-file-path). The functionality is 
> a menu item in the Tools instead of the notebook tab menu but additionally 
> provides a keyboard shortcut.

I didnt even know that this wouldve been a feature! Although, of course to 
simply copying the full path is nice but at least in my experience you it being 
only one method and being buried in the `Tools` menu is rather unexpected when 
youve used other IDEs that have it on the Notetab (Notepad++, Atom, 
MonoDevelop, VS Studio iirc) is probably the first reason I didnt realize it. 
Reason number 2 is that by default my distribution doesnt inlcude the add-ons 
on the normal install (in the past it used to be one separate bundled install 
but I think it's individualized now) and neither does compiling the main 
program from source have this feature in the normal program

>The functionality is a menu item in the Tools instead of the notebook tab menu 
>but additionally provides a keyboard shortcut.

As far as keyboard shortcuts, @codebrainz did have us add Mnemonics so it's 
typically there. I had seen somewhere in the source-code yesterday that 
`Shift+F10` does open up the Notebook tab context menu this should allow the 
accelerator sequence to be Shift+F10+[whichever Mnemonics were added yesterday] 
(albeit I have only tested Shift+F10 to open the context menu as I dont use 
mnemonics often)

Everything else is up to yourselves to discuss as I cant speculate on if users 
have an average preferred notebook tab context menu length nor do I know much 
of anything regarding the plugin architecture or it's API to contribute. 

Cheers

-- 
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/2550#issuecomment-660473561

Re: [Github-comments] [geany/geany] Context menu update (#2550)

2020-07-18 Thread Ru Uba
@SavSanta pushed 1 commit.

1d1cb2b14d62199a669565e0e71e42e80509de27  Merge differential patch for utf8 
locale paths


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/geany/geany/pull/2550/files/27e81be203db302785ee7bef49cb4c010fd01f83..1d1cb2b14d62199a669565e0e71e42e80509de27


Re: [Github-comments] [geany/geany] Context menu update (#2550)

2020-07-18 Thread Enrico Tröger
I've got two remarks:
- the Addons plugin already has a similar feature 
(https://plugins.geany.org/addons.html#copy-file-path). The functionality is a 
menu item in the `Tools` instead of the notebook tab menu but additionally 
provides a keyboard shortcut.
- since this PR would add three additional menu items to the menu and this 
almost doubles the alway fixed menu items, I think this should be configurable 
or reduce it to just copying the file path (as in the Addons plugin)

Since the implementation in the Addons plugin and this PR are quite similar but 
in detail also different, I suggest to merge them and have *one* implementation 
of this feature.
Maybe it's worth to extract the feature from the Addons plugin and make it a 
seperate, stand-alone plugin instead.
I don't know how easy it would be to access the notetook tab menu from the 
plugin API but I guess it is possible or we just extend the API if necessary. 

-- 
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/2550#issuecomment-660448482