[Github-comments] [geany/geany] Enhancement - Vertical Editing Sequential Numbering (#2317)

2019-09-23 Thread AdamDanischewski
I've been searching for vertical editing sequential numbering, I've found: 
https://www.emeditor.com/text-editor-features/coding/multiple-selection-editing/how-to-use-vertical-editing/

On vertical selection, a menu option allows for sequential numbering to be 
inserted. This would be a welcome addition to Geany. It probably would be 
best/proper to add it to Scintilla but it could probably be added to Geany by 
cycling over the vertical selections or prior to paste. 
![geany_feat](https://user-images.githubusercontent.com/10157303/65474182-e2776d80-de48-11e9-90f3-e35b33072b51.gif)

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

Re: [Github-comments] [geany/geany] Prefs dialog: Disable overridden pref widgets when project is open (#2316)

2019-09-23 Thread Matthew Brush
What about something like this?

![geany_project_override](https://user-images.githubusercontent.com/181177/65471423-e218ab80-de23-11e9-92ee-d5d9fc50199f.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/pull/2316#issuecomment-534331095

Re: [Github-comments] [geany/geany] Autotools: Really slow on Windows (#2305)

2019-09-23 Thread Matthew Brush
You mean to comment out all the `GEANY_API_SYMBOL` stuff? I can try next time I 
boot into Windows I guess, but I did mess around with it for quite a while 
trying to get it to work. I get really frustrated and annoyed trying to develop 
on Windows, especially when it's on stuff I don't know.

-- 
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/2305#issuecomment-534326838

Re: [Github-comments] [geany/geany] Prefs dialog: Disable overridden pref widgets when project is open (#2316)

2019-09-23 Thread elextr
Looks a good idea.  

Whilst @codebrainz has a point, that minor inconvenience seems acceptable given 
that even if the user could edit a "normal" preference it will have no effect 
until the project is closed anyway.



-- 
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/2316#issuecomment-534292471

Re: [Github-comments] [geany/geany] Autotools: Really slow on Windows (#2305)

2019-09-23 Thread Thomas Martitz
Could you change the symbol visibility back to default temporarily?

-- 
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/2305#issuecomment-534256999

Re: [Github-comments] [geany/geany] Prefs dialog: Disable overridden pref widgets when project is open (#2316)

2019-09-23 Thread Matthew Brush
Is it possible to still allow editing the preferences, but to put a "warning" 
icon next to the preference to tell the user that the setting _is_ overridden? 
Like "Warning: this setting is overridden in the project preferences and will 
not have effect" or such.

If you actually want to change the normal preference, it would be annoying to 
have to close the project, tick the checkbox, and then re-open the project, IMO.

-- 
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/2316#issuecomment-534122201

Re: [Github-comments] [geany/geany] Prefs dialog: Disable overridden pref widgets when project is open (#2316)

2019-09-23 Thread shiftee
Looks like a nice solution to me.
Should you hint more directly in the tooltip that the user should look at 
Project>Properties?
e.g. "These preferences can be overridden by project properties"

-- 
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/2316#issuecomment-534109232

[Github-comments] [geany/geany] Prefs dialog: Disable overridden pref widgets when project is open (#2316)

2019-09-23 Thread Nick Treleaven
Fixes #1363.

Similar to #1750, this disables pref widgets that are overridden by an open 
project. (It doesnt disable the frame label). Instead of editing a 
translatable label, this adds an info image next to the frame/widget label. A 
tooltip is set to show when the mouse is over the label or the image. This 
doesnt try to change the tooltip for disabled widgets, I didnt find a 
way to implement that easily and cleanly.

![image](https://user-images.githubusercontent.com/1107820/65428866-103ec100-de0d-11e9-91b1-dc038082b1ee.png)

This approach can also be used to indicate which prefs are overridden by 
document-specific settings.

ATM this only affects the Saving files prefs, but I can add the 
others.

You can view, comment on, or merge this pull request online at:

  https://github.com/geany/geany/pull/2316

-- Commit Summary --

  * Prefs dialog: Disable overridden pref widgets when project is open

-- File Changes --

M data/geany.glade (32)
M src/prefs.c (9)

-- Patch Links --

https://github.com/geany/geany/pull/2316.patch
https://github.com/geany/geany/pull/2316.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/pull/2316


Re: [Github-comments] [geany/geany] [Feature request] Select to matching brace (#2260)

2019-09-23 Thread wiwwo
Perfect!

-- 
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/2260#issuecomment-534078383

Re: [Github-comments] [geany/geany] [Feature request] Select to matching brace (#2260)

2019-09-23 Thread wiwwo
Closed #2260.

-- 
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/2260#event-2654258636

Re: [Github-comments] [geany/geany] Disable Prefs/Files/Saving-files if project open (#1750)

2019-09-23 Thread Nick Treleaven
> Trouble is no symbol is an obvious "this is overridden" especially that new 
> users will understand automatically,

I've started working on a pull that puts an info icon next to the frame label 
with a tooltip, as well as disabling overridden pref widgets.

-- 
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/1750#issuecomment-534063065

[Github-comments] [geany/geany-themes] Added Dark Blue Snake theme. (#36)

2019-09-23 Thread Grigoriy Kramarenko

You can view, comment on, or merge this pull request online at:

  https://github.com/geany/geany-themes/pull/36

-- Commit Summary --

  * Added Dark Blue Snake theme.

-- File Changes --

M AUTHORS (6)
A colorschemes/dark-blue-snake.conf (119)

-- Patch Links --

https://github.com/geany/geany-themes/pull/36.patch
https://github.com/geany/geany-themes/pull/36.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-themes/pull/36


Re: [Github-comments] [geany/geany-plugins] Delete danish translation (#907)

2019-09-23 Thread scootergrisen
Closed #907.

-- 
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/907#event-2653540386

Re: [Github-comments] [geany/geany] it.po for 1.36 (#2311)

2019-09-23 Thread Frank Lanitz
Merged #2311 into master.

-- 
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/2311#event-2653505003

Re: [Github-comments] [geany/geany] Update danish translation to 1.36 (#2313)

2019-09-23 Thread Frank Lanitz
Merged #2313 into master.

-- 
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/2313#event-2653504313

Re: [Github-comments] [geany/geany-plugins] Delete danish translation (#907)

2019-09-23 Thread Frank Lanitz
@scootergrisen  Instead of deleting could you maybe start a better one? ;) But 
of course low level of translated strings with a high failure count does not 
help

-- 
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/907#issuecomment-533994146

Re: [Github-comments] [geany/geany] Too Many Filetypes in Open Dropdown! How can I shorten list? (#2296)

2019-09-23 Thread Nick Treleaven
> if I have a couple python files in a directory with many html and php files, 
> "All Sources" doesn't really help.

OK. Even if the Gtk scrolling issue was resolved on your system, I assume you'd 
still want to configure the list of file filters. ATM you can't do that. My 
idea would allow you to change the order:

> the single-filetype file filters could be ordered to show filetypes that 
> don't belong to a group above the grouped ones.

So *if* this was implemented, you might define:
`None=HTML;PHP;Python`

Then the list would be something like:
All files
All source
HTML
PHP
Python
Abc
Assembler
C
C++
D
etc

@Rufusvs would that solve the issue?

-- 
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/2296#issuecomment-533990204

Re: [Github-comments] [geany/geany] Too Many Filetypes in Open Dropdown! How can I shorten list? (#2296)

2019-09-23 Thread LarsGit223
@RufusVS: the open dialog is created in the function 
```create_open_file_dialog()```. It calls the function 
```filetypes_create_file_filter()``` to create the filter and that function is 
filling the filter with all filetypes from the list ```filetypes_by_title```. 
This is filled on startup of Geany in the function ```filetypes_init()``` which 
calls ```filetypes_init_types()```. Then first built-in filetypes are set in 
function ```init_builtin_filetypes()```. And then filetypes are added from the 
application data directory and the config directory. On my Ubuntu machine these 
are ```/usr/local/share/geany/filedefs``` and 
```/home/username/.config/geany/filedefs```.

So, if I understood it right you would have to remove some files from the 
directory as you did **AND** shorten the list in 
```init_builtin_filetypes()```and re-build Geany. Also notice that if you 
remove some files in the directories it will only have an effect after 
re-starting Geany.

But as the others wrote the list should be scrollable and it seems to be some 
kind of Gtk issue.

-- 
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/2296#issuecomment-533971546