Re: [Github-comments] [geany/geany] Support getters/setters autocompletion (#1695)

2017-11-21 Thread elextr
Might be useful to note which language you are talking about. -- 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/1695#issuecomment-346265082

[Github-comments] [geany/geany] Support getters/setters autocompletion (#1695)

2017-11-21 Thread OMG Eto Zhe BFG
Check out this snippet. ``` string NAME; public string name { set { NAME = value; } get { return NAME; } } ``` Editor autocompletion detects `NAME`, but does not aknowledge `name`. -- You are receiving this because you are subscribed to this thread. Reply to this email directly

Re: [Github-comments] [geany/geany] Multi-edit mode feature or plugin? (#1656)

2017-11-21 Thread elextr
Work on multiple insertion points is ongoing at #1141. Closed as duplicate. -- 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/1656#issuecomment-346039917

Re: [Github-comments] [geany/geany] Multi-edit mode feature or plugin? (#1656)

2017-11-21 Thread elextr
Closed #1656. -- 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/1656#event-1352072380

Re: [Github-comments] [geany/geany] Multi-edit mode feature or plugin? (#1656)

2017-11-21 Thread Leeteq.XV
I am just trying to pinpoint the right place to address this so that it becomes possible with such a function in Geany. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub:

Re: [Github-comments] [geany/geany] Multi-edit mode feature or plugin? (#1656)

2017-11-21 Thread elextr
@LeeteqXV it is already in Scintilla, I said above "It is a capability of the underlying editor, widget Scintilla". -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub:

Re: [Github-comments] [geany/geany] Multi-edit mode feature or plugin? (#1656)

2017-11-21 Thread Leeteq.XV
Ok, I just asked about this over at the Scintilla queue: https://sourceforge.net/p/scintilla/feature-requests/1202/ -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub:

Re: [Github-comments] [geany/geany] Set the min-width of the line numbers? (#1694)

2017-11-21 Thread elextr
No, its only automatic. The margin width is automatic based on the number of lines in the file so space isn't wasted for small files and it still allows stupidly huge log files to be opened. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or

[Github-comments] [geany/geany] Set the min-width of the line numbers? (#1694)

2017-11-21 Thread luigifab38
Is there a way to set the min-width of the line numbers column? Just because line 1 to 9 doesn't have the same width of line 100 to 999. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub:

Re: [Github-comments] [geany/geany] Indent of selected range and copy doesn't include indent of first line (#1693)

2017-11-21 Thread David C. Rankin
I like that solution, but what about the times when there is partial first like selected (or the whole like, including the first character, just not from the numbers margin?) I usually have numbers off anyway, but if it works similar to the what word processors do and doesn't require numbers

Re: [Github-comments] [geany/geany-plugins] [geanylua] geany.scintilla() does not work with SCI_SETLEXER (#646)

2017-11-21 Thread elextr
> I believe it will allocate room for the needed pointers plus one byte. @codebrainz good catch. Luckily for any geanylua users the allocated memory is likely to round up to a multiple of a pointer anyway for alignment reasons. -- You are receiving this because you are subscribed to this

Re: [Github-comments] [geany/geany-plugins] [geanylua] geany.scintilla() does not work with SCI_SETLEXER (#646)

2017-11-21 Thread Matthew Brush
> Thats why its a stupid warning (or at least stupid to enable by default) > because many system interfaces use int as a counter (like argc) and everybody > knows they are never negative To be fair, it's not the _actual_ `argc`, it's a random value popped off the Lua stack, it could be

Re: [Github-comments] [geany/geany] Indent of selected range and copy doesn't include indent of first line (#1693)

2017-11-21 Thread elextr
The trick is to select the lines from the line number margin so whole lines are selected, not just a piece of text,, then you can indent/undent to your hearts content and the new indents are part of the selection. -- You are receiving this because you are subscribed to this thread. Reply to

[Github-comments] [geany/geany] Indent of selected range and copy doesn't include indent of first line (#1693)

2017-11-21 Thread David C. Rankin
This is more a feature request than a bug, so no immediate attention is required. The problem is selecting lines to indent and copy for pasting. If you full-select lines 1-10, and then choose indent, the existing selection does not include the new indent of the 1st line (meaning after indent,