[Github-comments] Re: [geany/geany] Renamed pep8 to pycodestyle (#1776)

2023-09-28 Thread Abel Serrano Juste via Github-comments
I just rebased this branch with current master.
Let me know, if that's OK or any further change is needed.

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

Message ID: 

[Github-comments] Re: [geany/geany] Renamed pep8 to pycodestyle (#1776)

2023-09-28 Thread Abel Serrano Juste via Github-comments
@Akronix pushed 1 commit.

c9853c7740b2caaae77abd761fda98c6c4cf8ac5  Renamed pep8 to pycodestyle

-- 
View it on GitHub:
https://github.com/geany/geany/pull/1776/files/5dd3936524169a2d92dca7dd6c46092b5fb9ae1c..c9853c7740b2caaae77abd761fda98c6c4cf8ac5
You are receiving this because you are subscribed to this thread.

Message ID: 


Re: [Github-comments] [geany/geany] Enhancement Request - Multiselect Multipaste Option (#850)

2019-10-03 Thread Abel Serrano Juste
> @Akronix see #2328 for recent developments grin

Yep, I saw it and subscribed to the PR updates. Nice job @AdamDanischewski ! 
:clap: 

-- 
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/850#issuecomment-537816184

Re: [Github-comments] [geany/geany] Enhancement Request - Multiselect Multipaste Option (#850)

2019-10-02 Thread Abel Serrano Juste
> > Sorry for seeming silly, but what are the two options?
> 
> When there is a rectangular selection and a single item on the clipboard the 
> choice is to paste the single item into the first row of the selection or to 
> repeat the single item in every row of the selection.
> 
> Although from #2317 comes the suggestion that if the clipboard is multi-line 
> that successive lines get pasted into successive rows of the selection, so 
> now there are three options grin

I might be too closed minded here, but I sincerely don't see the user case for 
the first one. And when I say user case I mean actual user base demanding this 
one and complaining about having the second one.

-- 
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/850#issuecomment-537602866

Re: [Github-comments] [geany/geany] Multipaste (#2328)

2019-10-02 Thread Abel Serrano Juste
Akronix commented on this pull request.



> @@ -93,6 +93,10 @@ sptr_t sci_send_message_internal (const gchar *file, guint 
> line, ScintillaObject
 }
 #endif
 
+ /* Set multi paste setting (at 3104 scintilla defaults to SC_MULTIPASTE_ONCE) 
*/ 
+void sci_set_multipaste(ScintillaObject *sci, gint mpval) { 
+   SSM(sci, SCI_SETMULTIPASTE, mpval, 0); 
+}

Related discussion can be found in #2317 and in #850

-- 
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/2328#discussion_r330680948

Re: [Github-comments] [geany/geany] Enhancement Request - Multiselect Multipaste Option (#850)

2019-09-25 Thread Abel Serrano Juste
> > Its not exactly "mind reading" to presume that someone wants a single row 
> > pasted into every row of a multi-line selection. An option being required 
> > to turn off this behavior? If you really want to paste to a single line to 
> > a single row then don't do a multi-line select beforehand - simply put the 
> > cursor where you want and paste it like normal.
> 
> The problem with this argument is that both sides think their option is 
> obvious and clearly the correct one and can't understand the other mob. 
> 
> In fact they are both right, each solution is useful at times, so as I 
> suggest, why not just have two pastes, one to paste single, and one to paste 
> multiple. Then the only argument is which is default . And that could be 
> solved with the option.

Sorry for seeming silly, but what are the two options?

-- 
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/850#issuecomment-535114840

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

2019-09-25 Thread Abel Serrano Juste
I still strongly think that a single-line copy should paste repeatedly in as 
many lines selected as they are. That's why you did the multi-line selection 
after copying and that's the quickest way to append certain text to lines that 
are similar in structure (like tabular data for instance). I think this would 
make the multi-line selection much more useful, at least for me.
Another good point to make it work this way is that it would be consistent with 
the behaviour of many other popular editors.

-- 
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#issuecomment-535111758

[Github-comments] [geany/geany] Multicursor stops when I press the Home or the End keys (#2120)

2019-04-07 Thread Abel Serrano Juste
If I entered into a multicursor / multicaret mode by pressing alt + up / down 
arrows, I would expect that Home and End keys would take me to the beginning or 
end of every single line while maintaining the multicursor mode. Instead, the 
mode falls back to single cursor mode.

Here I have recorded a screencast of what happens:
![multicursor home 
end](https://user-images.githubusercontent.com/2631430/55691061-05e15580-599a-11e9-91ef-e14fa7623923.gif)
And here the expected behaviour (using Atom):
![multicursor home end - 
Atom](https://user-images.githubusercontent.com/2631430/55691078-843df780-599a-11e9-9991-5fe1c88029c3.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/2120

Re: [Github-comments] [geany/geany] Keybinding for switching focus to splitwindow. Fix #631 (#721)

2019-04-07 Thread Abel Serrano Juste
ping!
I'm missing this :cry: 

-- 
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/721#issuecomment-480637256

Re: [Github-comments] [geany/geany-plugins] auto-close doesn't work for backquotes ` in the Spanish keyboard (#835)

2019-04-07 Thread Abel Serrano Juste
As a side note, this works in the Atom editor with the Spanish keyboard: after 
pressing twice the key for \`, I get two \`.

-- 
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/issues/835#issuecomment-480636599

Re: [Github-comments] [geany/geany-plugins] auto-close doesn't work for backquotes ` in the Spanish keyboard (#835)

2019-03-24 Thread Abel Serrano Juste
They do:
![image](https://user-images.githubusercontent.com/2631430/54877284-a2ddb380-4e1c-11e9-98b8-9419149095dd.png)
[The files in case you want to download them.](https://we.tl/t-x6KQLrTm4P)

-- 
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/issues/835#issuecomment-475941148

Re: [Github-comments] [geany/geany-plugins] auto-close doesn't work for backquotes ` in the Spanish keyboard (#835)

2019-03-23 Thread Abel Serrano Juste
I have written a small program in pascal which tells me the ascii code of the 
keys I press and I get that same ascii code in both english keyboard and in 
spanish keyboard with second press (first press on \` returns 
nothing).

-- 
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/issues/835#issuecomment-475907530

Re: [Github-comments] [geany/geany-plugins] auto-close doesn't work for backquotes ` in the Spanish keyboard (#835)

2019-03-22 Thread Abel Serrano Juste
When I type it twice, I get one single \`.

-- 
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/issues/835#issuecomment-475634226

Re: [Github-comments] [geany/geany-plugins] auto-close doesn't work for backquotes ` (#835)

2019-03-22 Thread Abel Serrano Juste
Interesting, I've tried changing the keyboard layout to English and now it 
works :confused: 

To add some extra information, in the Spanish keyboard, we need to type the 
\` key twice in order to print it alone  (it's like, first type on 
it keeps waiting for another character to decorate it, so it forms letters 
like: à, ù,.. same for our `´` symbol)

-- 
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/issues/835#issuecomment-475559231

[Github-comments] [geany/geany-plugins] auto-close doesn't work for backquotes ` (#835)

2019-03-22 Thread Abel Serrano Juste
Hi.

I use the plugin auto-close and thus I've disabled all the options for 
Completions > auto-close inside Geany preferences.

In auto-close, I have the following config:
![image](https://user-images.githubusercontent.com/2631430/54814341-ca534580-4c8f-11e9-9d00-d88c60e4c165.png)

The plugin works for all the symbols and in all languages except for the 
backquote, which behaves as It'd be any other usual character: It does not 
auto-close or generate two backquotes when I type one.

I'm using Geany 1.33 on Ubuntu 16.04 and Spanish layout for the keyboard.

-- 
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/issues/835

Re: [Github-comments] [geany/plugins.geany.org] Remove deleted plugins from the web (#8)

2018-10-13 Thread Abel Serrano Juste
Hmm so then geanylatex.html should not be in the repo anymore, right?

I have no idea how to do it automatically. 

-- 
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/plugins.geany.org/issues/8#issuecomment-429562164

Re: [Github-comments] [geany/plugins.geany.org] Removed deleted plugin newline. (#15)

2018-10-12 Thread Abel Serrano Juste
OK, so I close this and open a new one for the right zip file.

-- 
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/plugins.geany.org/pull/15#issuecomment-429472713

Re: [Github-comments] [geany/plugins.geany.org] Removed deleted plugin newline. (#15)

2018-10-12 Thread Abel Serrano Juste
Closed #15.

-- 
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/plugins.geany.org/pull/15#event-1901772093

Re: [Github-comments] [geany/plugins.geany.org] Remove deleted plugins from the web (#8)

2018-10-12 Thread Abel Serrano Juste
hm, because [its html webpage](https://plugins.geany.org/latex.html) is being 
obtained by [the README in geany 
plugins](https://github.com/geany/geany-plugins/blob/master/latex/README)...or 
maybe I'm wrong?

-- 
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/plugins.geany.org/issues/8#issuecomment-429414620

Re: [Github-comments] [geany/plugins.geany.org] Removed deleted plugin newline. (#15)

2018-10-12 Thread Abel Serrano Juste
Oh, true. I've never seen that plugin around and I thought it was too old.
Is it working for newer versions of Geany though? because in the webpage it 
says "geany 0.19" which is pretty old.

-- 
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/plugins.geany.org/pull/15#issuecomment-429414236

Re: [Github-comments] [geany/plugins.geany.org] Remove deleted plugins from the web (#8)

2018-10-12 Thread Abel Serrano Juste
I think the file 
[geanylatex.html](https://github.com/geany/plugins.geany.org/blob/master/content/geanylatex.html)
 can be deleted as well?

-- 
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/plugins.geany.org/issues/8#issuecomment-429250888

[Github-comments] [geany/geany-plugins] Update link to geany latex plugin docs (#781)

2018-10-12 Thread Abel Serrano Juste
Closes https://github.com/geany/plugins.geany.org/issues/8
You can view, comment on, or merge this pull request online at:

  https://github.com/geany/geany-plugins/pull/781

-- Commit Summary --

  * Update link to geany latex plugin docs

-- File Changes --

M latex/README (2)

-- Patch Links --

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


[Github-comments] [geany/plugins.geany.org] Removed deleted plugin newline. (#15)

2018-10-12 Thread Abel Serrano Juste
Page https://plugins.geany.org/newline-plugin.html isn't listed in the sidebar 
anymore but the html page was still there.
Similar to #8 
You can view, comment on, or merge this pull request online at:

  https://github.com/geany/plugins.geany.org/pull/15

-- Commit Summary --

  * Removed deleted plugin newline.

-- File Changes --

D content/newline-plugin.html (142)

-- Patch Links --

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


[Github-comments] [geany/plugins.geany.org] Removed old links to sourceforge. Fixes partially #5 (#14)

2018-10-12 Thread Abel Serrano Juste

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

  https://github.com/geany/plugins.geany.org/pull/14

-- Commit Summary --

  * Removed old links to sourceforge. Fixes partially #5

-- File Changes --

M content/start.html (14)
M templates/template.html (4)

-- Patch Links --

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


Re: [Github-comments] [geany/geany] Keybinding for switching focus to splitwindow. Fix #631 (#721)

2018-05-07 Thread Abel Serrano Juste
any maintainer could take a look at this, please? @elextr @b4n

-- 
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/721#issuecomment-387048872

Re: [Github-comments] [geany/geany] Keybinding for switching focus to splitwindow. Fix #631 (#721)

2018-04-30 Thread Abel Serrano Juste
ping

-- 
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/721#issuecomment-385532801

Re: [Github-comments] [geany/geany] Keybinding for switching focus to splitwindow. Fix #631 (#721)

2018-04-25 Thread Abel Serrano Juste
Removed all mnemonics in calls to keybindings_set_item()

-- 
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/721#issuecomment-384383092

Re: [Github-comments] [geany/geany] Keybinding for switching focus to splitwindow. Fix #631 (#721)

2018-04-25 Thread Abel Serrano Juste
@Akronix pushed 1 commit.

b0183d7  Update splitwindow.c


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/geany/geany/pull/721/files/fa26e40a47fd3e638d6ea2dfda53cbb33d3d8f62..b0183d7000f2797941120b4fbdff3b358542928d


Re: [Github-comments] [geany/geany] Keybinding for switching focus to splitwindow. Fix #631 (#721)

2018-04-24 Thread Abel Serrano Juste
Sure, but then another question arises, why Unsplit has a _U mnemonic in 
keybindings_set_item?:
https://github.com/geany/geany/pull/721/files#diff-5013916e0dbfaf2f1a5f447b3710e87bR494

-- 
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/721#issuecomment-383913515

Re: [Github-comments] [geany/geany] Keybinding for switching focus to splitwindow. Fix #631 (#721)

2018-04-24 Thread Abel Serrano Juste
hmm yes, I know what is all the mnemonic all about. But I already set 
gtk_menu_item_new_with_mnemonic(_("Switch _Focus"));
so I do not know what is the mnemonic in keybindings_set_item intended for.

I'm sorry, pressing the alt key on Ubuntu Unity has a rather odd behaviour 
since it launches the HUD Unity feature, so I don't use mnemonics very often.

-- 
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/721#issuecomment-383847503

Re: [Github-comments] [geany/geany] Keybinding for switching focus to splitwindow. Fix #631 (#721)

2018-04-23 Thread Abel Serrano Juste
Akronix commented on this pull request.

No problem. But I'm wondering, what are these mnemonics there for? Because Side 
by Side and Top and Bottom do not have.

> @@ -468,6 +492,8 @@ void plugin_init(GeanyData *data)
0, 0, "split_vertical", _("Top and Bottom"), 
menu_items.vertical);
keybindings_set_item(key_group, KB_SPLIT_UNSPLIT, kb_activate,
0, 0, "split_unsplit", _("_Unsplit"), menu_items.unsplit);
+   keybindings_set_item(key_group, KB_FOCUS_SPLIT_WINDOW, kb_activate,
+   0, 0, "focus_split_window", _("Switch focus between windows"), 
menu_items.switch_focus);

No problem. But I'm wondering, what are these mnemonics there for? Because Side 
by Side and Top and Bottom do not have.

-- 
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/721#pullrequestreview-114404974

Re: [Github-comments] [geany/geany] Keybinding for switching focus to splitwindow. Fix #631 (#721)

2018-04-23 Thread Abel Serrano Juste
@Akronix pushed 1 commit.

fa26e40  Added keybinding mnemonic to Switch focus.


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/geany/geany/pull/721/files/ef73a434ff35f7e8d8d1f976ba7cbebe36b6fa53..fa26e40a47fd3e638d6ea2dfda53cbb33d3d8f62


Re: [Github-comments] [geany/geany] Keybinding for switching focus to splitwindow. Fix #631 (#721)

2018-04-23 Thread Abel Serrano Juste
I have:
- Rebased against master
- Removed default shortcut for switch focus feature
- switch focus between main and splitted window

Please, review the code, let me know any issues you encounter or merge it if 
you find it OK.

I have also noticed an issue regarding split window plugin. When editing in the 
splitted window editor, opening and closing braces, parentheses, brackets,... 
pairs are not being highlighted as they are in the main editor. I guess this 
deserves a separate issue and PR.

-- 
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/721#issuecomment-383503419

Re: [Github-comments] [geany/geany] Switch focus from main window to splitwindow (#631)

2018-04-20 Thread Abel Serrano Juste
I have:
- Rebased against master
- Removed default shortcut for switch focus feature
- switch focus between main and splitted window

Please, review the code, let me know any issues you encounter or merge it if 
you find it OK.

I have also noticed an issue regarding split window plugin. When editing in the 
splitted window editor, opening and closing braces, parentheses, brackets,... 
pairs are not being highlighted as they are in the main editor. I guess this 
deserves a separate issue and PR.

-- 
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/631#issuecomment-383013988

Re: [Github-comments] [geany/geany] Keybinding for switching focus to splitwindow. Fix #631 (#721)

2018-04-20 Thread Abel Serrano Juste
@Akronix pushed 250 commits.

c328051  Some adjustmenys in javascript keywords: Deleted 'each' from secondary 
keywords
59935a3  Merge pull request #1356 from b4n/snippets-keybindings-signature
c698469  Removed 'alert' from secondary keywords since it depends on a DOM 
environment
00a3aef  Merge pull request #1361 from Akronix/keywords-js.filetypes
38d5983  Update Catalan translation (#1375)
0df7d5a  scintilla: Prevent running signal handlers on a destroyed a11y object
67d6562  Fix cut and copy actions in non-Latin keyboard layouts
2c1a71a  Use :select/:deselect signals for consistency
b0f71a1  Merge branch 'Forkest/copy-items-nonlatin'
170ebf6  scintilla: Fix build with older GCC
7347631  Fix setting menu item labels dynamically
ed46b65  Avoid gdk_display_get_name() on OS X
f096fa2  Small update of German translation
2219ab7  Update Scintilla to version 3.7.3
93f2734  Update for new Scintilla styles
9a230e1  Fix search history filling on GTK >= 3.20
ed4fd6a  Update po-files for string freeze of Geany 1.30
0b85db4  GTK: Fix double scrolling under X11
1c2d35a  Solved spanish fuzzy translation for Geany 1.30 (#1408)
7b09180  api: new function geany_api_version
f4c3363  Update of Portuguese translation
7125769  Update NEWS
df05fc8  Update NEWS
1421a3f  scintilla: Fix crash after destroying the widget on GTK < 3.3.6
b07c8b0  Merge branch 'scintilla/update-373'
6d00622  Scintilla: speed up converting byte offsets to character offsets
3b105ec  Merge pull request #1404 from b4n/search/gtk-3-20-history
b7900b3  Merge pull request #1399 from techee/osx_start
a32ee97  Set language metadata in header of some po files
8001086  Fix po creation time meta data
cc7f7f7  Merge pull request #1406 from kugel-/for-upstream
94620f4  updated it.po (#1405)
3838a08  There was also an it.po update for 1.30
fc6f3ff  Update copyright years
344de2d  Remove faulty empty lines
5a7a308  Set release date
7ccd37b  Update NEWS preparing for next release
119f05e  Small update of the French translation
a15dcc3  Finish updating NEWS
3303bde  Post release version bump
994cb47  Update of Slovak translation (#1424)
709acc0  Update of Spanish translation
2a2b8d1  Small update of German translation
7514212  GTK: Fix popup positioning on monitors not positioned at 0,0
ffb71f9  Update of Greek translation
2414029  Bump version in preparation for 1.30.1
03ee2e2  GTK: Fix popup positioning on monitors not positioned at 0,0
420c109  Update NEWS
ec1bde0  Update of Slovak translation (#1424)
8d88401  Update of Spanish translation
b4eb662  Small update of German translation
6e0e6a4  Update of Greek translation
28b0467  Update NEWS for 1.30.1 for backported translations
be91746  Update Catalan translation (#1432)
231e29c  Update Catalan translation (#1432)
aada81e  Update NEWS and cleanup a unneeded fuzzy string inside Catalan 
translation
1aa82c3  Add a script to fixup copyright years translations
def32ab  Fixup copyright years translations
79f9a71  Unfuzzy strings that were only marked as such because of years update
0dd1306  Merge pull request #1433 from b4n/po/copyright-years
a1929f1  Set release date
46812c4  Fix scripts/set-release-date when LC_TIME is set
4f388e5  Backmerge bugfix release branch 1.30 from 1.30.1 to master
6e1a163  Update bugtracker URL to github
06f70e5  Catalan translation: use unique accelerator keys for menus (#1434)
33762f5  Add parfor to Matlab keyword list (#1021)
d34ebce  Update Catalan translators (#1440)
2386153  Fix the typo in Kazakh translation (#1447)
ce28409  Handle continuous G_IO_IN-s without any data
5539c3f  Update status bar after clicking detect indent type menu item
2707006  Fix crash when plugin_set_key_group() is called several times by 
plugins (#1426)
673a714  Fix the maximum number of G_IO_IN-s without any data
6f69211  C: Fix line continuation handling (#1370)
c296efe  fix typo in russian translation (#1474)
dbcf456  Update HACKING (#1479)
1a19b39  Read stdout/stderr in a loop when using timeout callbacks
9f4407c  Add `require_relative` in ruby syntax highlighting (#1472)
fefc3a5  Explain the behavior of search keybindings regarding word boundaries 
(#1478)
8425371  Haxe: Update keywords (#1216)
1305b43  Update Indonesian translation (#1501)
fbe6106  Fix comment/uncomment keyboard shortcut for Arduino filetype (#1510)
174fac7  Update po-files for string freeze of Geany 1.31
4406ccf  Cmake and Csharp Keywords (#1315)
1d100ae  Update of Japanese translation
35a5d45  Update of Lithuanian translation
4f1b2a0  Fix converting color to hex for insertion
71b8fea  Update NEWS
7027377  Update HTML keywords (#1530)
e185f47  Merge pull request #1536 from vfaronov/fix-color-chooser
30f23bb  Add recently merged PRs to NEWS
b2b8135  Python: Don't highlight sub-identifiers as keywords
4af5553  Set release date
2d9f97d  Post release version bump
75a69aa  Added option to auto reload files changed on disk (#1246)
c03af5b  Python: Remove obsolete lexer property
8b25d09  Cython: Inherit lexer properties from the Python filetyp

[Github-comments] [geany/geany] Renamed pep8 to pycodestyle (#1776)

2018-02-19 Thread Abel Serrano Juste
pep8 has been renamed to pycodestyle, see 
[this](https://github.com/PyCQA/pycodestyle/issues/466) , 
[this](https://github.com/PyCQA/pycodestyle/issues/481) and 
[this](https://github.com/PyCQA/pycodestyle/commit/2344a34a628b2f2e9df1c2539d9316005a35053d)
 for more info.

In fact, if I run the lint option from Geany I get the following warning:
```
/usr/local/lib/python3.5/dist-packages/pep8.py:2124: UserWarning: 

pep8 has been renamed to pycodestyle (GitHub issue #466)
Use of the pep8 tool will be removed in a future release.
Please install and use `pycodestyle` instead.

$ pip install pycodestyle
$ pycodestyle ...

  '\n\n'
```

This PR replaces pep8 by pycodestyle, thus removing the warning.
You can view, comment on, or merge this pull request online at:

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

-- Commit Summary --

  * Renamed pep8 to pycodestyle

-- File Changes --

M data/filedefs/filetypes.python (2)
M doc/geany.txt (2)

-- Patch Links --

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


[Github-comments] [geany/geany] Update of Spanish translation (#1771)

2018-02-13 Thread Abel Serrano Juste

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

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

-- Commit Summary --

  * Update of Spanish translation

-- File Changes --

M po/es.po (9)

-- Patch Links --

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


[Github-comments] [geany/geany-plugins] [New feature] autoclose: remove pairing quotes (#687)

2018-02-01 Thread Abel Serrano Juste
Hi.

I often use the feature to remove pairing braces using shift + backspace given 
by autoclose. This works for brackets and parenthesis as well.
I miss the same feature regarding quotes, both for simple or doble quotes. 

-- 
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/issues/687

Re: [Github-comments] [geany/geany-plugins] Autoclose puts )) when I type ( (#319)

2018-02-01 Thread Abel Serrano Juste
I cannot reproduce it with Geany 1.32 (I'm using the [ppa Geany 
repo](https://launchpad.net/~geany-dev))

-- 
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/issues/319#issuecomment-362192444

[Github-comments] [geany/geany] Feature request: Toggle quotes (#1665)

2017-10-28 Thread Abel Serrano Juste
Interesting enough there is a "toggle case of selection" feature, but there 
isn't a "toggle quotes of selection". I'd find it very useful in languages as 
Perl, Bash, Python and Javascript where you can write strings using `'` or `"` 
characters, but they have some semantic differences or you want to have a 
consistent way of quoting strings along all your source code.

The feature would very simple, select some text, find first quote symbol, 
replace it by the opposite, look for the corresponding quote and replace it 
alike.

This feature is available in Atom text editor through an external package: 
https://github.com/atom/toggle-quotes, however, I thought that in Geany it 
could be included in core as other toggle features are in: "toggle case of 
selection" or "toggle line commentation".

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

Re: [Github-comments] [geany/geany] Look and feel does not match on Ubuntu with GTK-3 (#1179)

2017-08-28 Thread Abel Serrano Juste
@Johndeep if you finally get those colors changed, please, document the process 
in the [Geany's wiki](http://wiki.geany.org).

-- 
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/1179#issuecomment-325504131

Re: [Github-comments] [geany/geany] Add to File Browser plugin (#1525)

2017-06-30 Thread Abel Serrano Juste
hi! any fresh thoughts on this?

-- 
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/1525#issuecomment-312311519

Re: [Github-comments] [geany/geany] Add to File Browser plugin (#1525)

2017-06-28 Thread Abel Serrano Juste
I was thinking in an external terminal, but I could be configured in the plugin 
preferences the same way execute scripts can be run in the VTE or in an 
external one.

-- 
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/1525#issuecomment-311668483

[Github-comments] [geany/geany] Add to File Browser plugin (#1525)

2017-06-28 Thread Abel Serrano Juste
I find very useful to be able to open a external terminal pretty quick directly 
from geany.
Tree Browser plugin already has this option but File Browser doesn't.

I'd like to make a PR for this if you're OK with it :smiley:

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

Re: [Github-comments] [geany/geany] async/await is not highlighted in Python code (#1351)

2017-06-23 Thread Abel Serrano Juste
Could we at least distinguish between python2 and python3 relying on the 
shebang line (if it exists) in order to highlight differently python2 source 
files from python3 ones?

-- 
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/1351#issuecomment-310618193

Re: [Github-comments] [geany/geany] Merge Geany parsers with universal-ctags parsers (#1162)

2017-06-23 Thread Abel Serrano Juste
What is the status of this? No uctag has been merged into geany?

-- 
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/1162#issuecomment-310609106

Re: [Github-comments] [geany/geany] Enhancement Request - Multiselect Multipaste Option (#850)

2017-06-15 Thread Abel Serrano Juste
@AdamDanischewski yeah! It took you nine months to understand what I was 
talking about :stuck_out_tongue_winking_eye: 

-- 
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/850#issuecomment-308819022

[Github-comments] [geany/geany-plugins] Updated spanish translation for 1.30 (#538)

2017-02-23 Thread Abel Serrano Juste
Also fixed some others wrong translations.
You can view, comment on, or merge this pull request online at:

  https://github.com/geany/geany-plugins/pull/538

-- Commit Summary --

  * Updated spanish translation for 1.30

-- File Changes --

M po/es.po (95)

-- Patch Links --

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


[Github-comments] [geany/geany] Updated spanish translation for 1.30 (#1408)

2017-02-23 Thread Abel Serrano Juste
Solved Spanish fuzzy translation for Geany 1.30
You can view, comment on, or merge this pull request online at:

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

-- Commit Summary --

  * Solved spanish fuzzy translation for Geany 1.30

-- File Changes --

M po/es.po (11)

-- Patch Links --

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


Re: [Github-comments] [geany/geany] Incorrectly identation width detection for tab characters (#1379)

2017-01-27 Thread Abel Serrano Juste
haha definitely not @elextr. I'm reading the [Linux Coding 
Style](https://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/plain/Documentation/CodingStyle?id=refs/tags/v4.9.5)
 and I feel that breaching a rule is like breaching a sacred Commandment.

By the way, I've noticed that it's not enough to reload the file after 
re-setting the tab width, but I have to actually close and open it again.

-- 
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/1379#issuecomment-275650769

Re: [Github-comments] [geany/geany] Incorrectly identation width detection for tab characters (#1379)

2017-01-27 Thread Abel Serrano Juste
Ok, thank you @elextr for the explanation.
I'm playing with the Linux kernel, so I don't feel like I'm on a position to 
replace tabs with spaces :sweat_smile:

-- 
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/1379#issuecomment-275643541

Re: [Github-comments] [geany/geany] Incorrectly identation width detection for tab characters (#1379)

2017-01-27 Thread Abel Serrano Juste
Closed #1379.

-- 
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/1379#event-939144616

Re: [Github-comments] [geany/geany] Incorrectly identation width detection for tab characters (#1379)

2017-01-26 Thread Abel Serrano Juste
I'm curious about this: is the tab character width defined in every file or 
it's rather a matter of how the editor/program displays it? 

-- 
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/1379#issuecomment-275567798

[Github-comments] [geany/geany] Incorrectly identation width detection for tab characters (#1379)

2017-01-26 Thread Abel Serrano Juste
Hi.

I think I've been experiencing for quite some time now.

I always have set the option of "Detect width from file", but Geany seems to 
always set my tab width as 2 (I have set 2 as width in chars of a single 
indent), no matter the width that is already in the file.

For instance, let's say I open a 8-width tabs file: Geany displays the 
indentations as two-width, but I expected them to be eight-width.
I'm talking about files with tab characters for indentation. No sure about 
files with whitespaces.

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

Re: [Github-comments] [geany/geany] Updated filetypes.javascript keywords (#1361)

2017-01-20 Thread Abel Serrano Juste
ping

-- 
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/1361#issuecomment-274146501

Re: [Github-comments] [geany/geany] Updated filetypes.javascript keywords (#1361)

2017-01-14 Thread Abel Serrano Juste
Akronix commented on this pull request.



> @@ -3,8 +3,8 @@
 
 [keywords]
 # all items must be in one line
-primary=break case catch class const continue default delete do each else 
extends false finally for function get if in Infinity instanceof let NaN new 
null return set static super switch this throw true try typeof undefined var 
void while with yield prototype
-secondary=Array Boolean Date Function Math Number Object String RegExp 
EvalError Error RangeError ReferenceError SyntaxError TypeError URIError 
constructor prototype decodeURI decodeURIComponent encodeURI encodeURIComponent 
eval isFinite isNaN parseFloat parseInt
+primary=break case catch class const continue debugger default delete do else 
enum export extends false finally for function get if import in Infinity 
instanceof let NaN new null return set static super switch this throw true try 
typeof undefined var void while with yield prototype async await
+secondary=Array Boolean Date Function Math Number Object String RegExp 
EvalError Error RangeError ReferenceError SyntaxError TypeError URIError 
constructor prototype decodeURI decodeURIComponent encodeURI encodeURIComponent 
eval isFinite isNaN parseFloat parseInt alert

I agree. Fixed in latest commit.

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

Re: [Github-comments] [geany/geany] Updated filetypes.javascript keywords (#1361)

2017-01-14 Thread Abel Serrano Juste
@Akronix pushed 1 commit.

c698469  Removed 'alert' from secondary keywords since it depends on a DOM 
environment


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/geany/geany/pull/1361/files/c328051382385ea663eca73c1bb0aa1d969ef321..c6984699d3fc9f7055eb25a5362afe990b9c82a6


Re: [Github-comments] [geany/geany] Updated filetypes.javascript keywords (#1361)

2017-01-14 Thread Abel Serrano Juste
Akronix commented on this pull request.



> @@ -3,8 +3,8 @@
 
 [keywords]
 # all items must be in one line
-primary=break case catch class const continue default delete do each else 
extends false finally for function get if in Infinity instanceof let NaN new 
null return set static super switch this throw true try typeof undefined var 
void while with yield prototype
-secondary=Array Boolean Date Function Math Number Object String RegExp 
EvalError Error RangeError ReferenceError SyntaxError TypeError URIError 
constructor prototype decodeURI decodeURIComponent encodeURI encodeURIComponent 
eval isFinite isNaN parseFloat parseInt
+primary=break case catch class const continue debugger default delete do else 
enum export extends false finally for function get if import in Infinity 
instanceof let NaN new null return set static super switch this throw true try 
typeof undefined var void while with yield prototype async await
+secondary=Array Boolean Date Function Math Number Object String RegExp 
EvalError Error RangeError ReferenceError SyntaxError TypeError URIError 
constructor prototype decodeURI decodeURIComponent encodeURI encodeURIComponent 
eval isFinite isNaN parseFloat parseInt alert

Yes, `alert` doesn't work on node.
If you're restricting the parser to strict plain JavaScript, then yes, it 
should not be added.

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

Re: [Github-comments] [geany/geany] Updated filetypes.javascript keywords (#1361)

2017-01-14 Thread Abel Serrano Juste
Akronix commented on this pull request.



> @@ -3,8 +3,8 @@
 
 [keywords]
 # all items must be in one line
-primary=break case catch class const continue default delete do each else 
extends false finally for function get if in Infinity instanceof let NaN new 
null return set static super switch this throw true try typeof undefined var 
void while with yield prototype
-secondary=Array Boolean Date Function Math Number Object String RegExp 
EvalError Error RangeError ReferenceError SyntaxError TypeError URIError 
constructor prototype decodeURI decodeURIComponent encodeURI encodeURIComponent 
eval isFinite isNaN parseFloat parseInt
+primary=break case catch class const continue debugger default delete do else 
enum export extends false finally for function get if import in Infinity 
instanceof let NaN new null return set static super switch this throw true try 
typeof undefined var void while with yield prototype async await

It's because async/await expressions [are in the draft for 
ES2017](https://tc39.github.io/ecmascript-asyncawait/#async-function-definitions)
 but [await expressions have to be inside an async 
function](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function).
 Many browsers already support it: Chrome, Firefox and Opera, and Babel compile 
it to legacy code for other platforms; so people can already program using 
async/await of ES7, and people actually do.
I've checked that other tools highlight the word: Atom, Chrome Dev Tools,...

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

[Github-comments] [geany/geany] Updated filetypes.javascript keywords (#1361)

2017-01-11 Thread Abel Serrano Juste
Based on ES6 keywords: [msn 
docs](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Lexical_grammar#Keywords)
 and [ES6 
specification](http://www.ecma-international.org/ecma-262/6.0/#sec-keywords).

I did a second 'amend' commit to remove `each` from primary since I didn't find 
anywhere it's keyworded.
You can view, comment on, or merge this pull request online at:

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

-- Commit Summary --

  * Updated js keywords with ES6
  * Some adjustmenys in javascript keywords: Deleted 'each' from secondary 
keywords

-- File Changes --

M data/filedefs/filetypes.javascript (4)

-- Patch Links --

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


[Github-comments] [geany/geany] Updated spanish translation es.po (#1288)

2016-11-02 Thread Abel Serrano Juste
Updated for Geany 1.29 and added some minor fixes.
You can view, comment on, or merge this pull request online at:

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

-- Commit Summary --

  * Updated spanish translation es.po

-- File Changes --

M po/es.po (24)

-- Patch Links --

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


Re: [Github-comments] [geany/geany] Enhancement Request - Multiselect Multipaste Option (#850)

2016-09-06 Thread Abel Serrano Juste
@elextr I think I meant rather the first one.

I've done a demo using Atom of the behaviour that I find nice to have :wink:
![anim](https://cloud.githubusercontent.com/assets/2631430/18294391/1b2bdeb2-7499-11e6-904b-d0b0db5d735d.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/850#issuecomment-245126748

Re: [Github-comments] [geany/geany] Enhancement Request - Multiselect Multipaste Option (#850)

2016-09-05 Thread Abel Serrano Juste
It'd be nice if,  inside multi-line mode (Shift+Alt+arrows or ctrl+mouse drag 
as @codebrainz pointed out), Cntrl + V was pasting the 
same content to every line currently being selected.

-- 
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/850#issuecomment-244819898

Re: [Github-comments] [geany/geany] Look and feel does not match on Ubuntu with GTK-3 (#1179)

2016-08-25 Thread Abel Serrano Juste
I already did that of putting it on a user's config file :confused:
@b4n could you post a snapshot to see how it would like if I had the GTK dark 
theme activated?

-- 
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/1179#issuecomment-242458582

Re: [Github-comments] [geany/geany] Look and feel does not match on Ubuntu with GTK-3 (#1179)

2016-08-25 Thread Abel Serrano Juste
Hi again!

I've followed all your steps and I don't see any change in the UI 
:disappointed: (well, if doesn't show up that Geany-WARNING about a custom CSS 
file, but that's it).

This is how I see it:
![screenshot from 2016-08-25 
18-09-51](https://cloud.githubusercontent.com/assets/2631430/17976759/27377832-6aef-11e6-9025-3b2c6153615e.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/1179#issuecomment-242445919

Re: [Github-comments] [geany/geany] Look and feel does not match on Ubuntu with GTK-3 (#1179)

2016-08-25 Thread Abel Serrano Juste
As I was testing the GTK-3 version, i was running it from the source dir.
Should I install it on the system and run it from there?

On Aug 25, 2016 2:03 AM, "Matthew Brush"  wrote:

> @Akronix  did you install Geany somewhere or
> are you trying to run it from the source dir?
>
> Also you can just create that settings.ini file if it doesn't exist (it
> shouldn't exist by default probably).
>
> —
> You are receiving this because you were mentioned.
> Reply to this email directly, view it on GitHub
> , or mute
> the thread
> 
> .
>


-- 
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/1179#issuecomment-242304875

Re: [Github-comments] [geany/geany] Look and feel does not match on Ubuntu with GTK-3 (#1179)

2016-08-24 Thread Abel Serrano Juste
hello back!
I've set up `gtk-application-prefer-dark-theme=1`in */etc/gtk-3.0/settings.ini* 
(I've edited system-wide config since I don't have any 
*~/.config/gtk-3.0/settings.ini* file)
I've run Geany again after I changed it but nothing has changed. This is the 
only message I get from the terminal:

`(lt-geany:13164): Geany-WARNING **: Failed to load custom CSS: :1:0Failed to import: Error opening file: No such file or directory`

-- 
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/1179#issuecomment-242089012

Re: [Github-comments] [geany/geany] support vte 0.38 in gtk3 build (#336)

2016-08-22 Thread Abel Serrano Juste
I see, but I don't find it as a superfluous effort at all.

Either way, thank you @b4n for your work.

-- 
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/336#issuecomment-241460870

Re: [Github-comments] [geany/geany] support vte 0.38 in gtk3 build (#336)

2016-08-21 Thread Abel Serrano Juste
Hi!

I just want to say two things:
1) I pushed the issue up because I was using Geany with `enable-gtk3` activated 
and I was missing the VTE (*I do use it a lot*). I'm on Ubuntu 16.04 and as 
@techee said in #1181 :
> Ubuntu 16.04 has only vte 2.91 for GTK3.

2) I didn't like how some of the Geany devs deal with the discussion from the 
beginning. It's not something that invite to participate or contribute to read 
those lines; I think that a nicer environment is much more productive and 
helper for everyone to come in.
Just I'd ask to be more easygoing for the next 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/336#issuecomment-241291713

Re: [Github-comments] [geany/geany] Look and feel does not match on Ubuntu with GTK-3 (#1179)

2016-08-19 Thread Abel Serrano Juste
Actually what I would expect is that the rest of the interface: tab bar and 
message window, become also tuned to a dark theme.

-- 
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/1179#issuecomment-241094792

[Github-comments] [geany/geany] Look and feel does not match on Ubuntu with GTK-3 (#1179)

2016-08-17 Thread Abel Serrano Juste
Hello!

After last changes on 1.28 for GTK3, in trying once again to be if I could move 
to Geany with GTK3 , which I prefer over GTK2.

One thing I've noticed is that the colours of the toolbar does not match with 
the colours of the rest of the interface.
Here is a snapshot of my Geany with GTK - 3.0:
![screenshot from 2016-08-18 
00-44-35](https://cloud.githubusercontent.com/assets/2631430/17756021/b001e35e-64dd-11e6-97b6-b1ea838be8f9.png)

I'm on Ubuntu 16.04 with Ambiance theme.

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

Re: [Github-comments] [geany/geany] support vte 0.38 in gtk3 build (#336)

2016-08-17 Thread Abel Serrano Juste
hi!
How is this going? any new about this??

-- 
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/336#issuecomment-240571014

Re: [Github-comments] [geany/geany] Transposing mistype chaarcters (#814)

2016-07-25 Thread Abel Serrano Juste
I think like @codebrainz.
I was just adding info related to this that I had found, but I'm don't really 
see the point of having a keybinding just to transpose two chars. 

---
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/814#issuecomment-235086896

Re: [Github-comments] [geany/geany] Added keybinding for Delete from line start to current position (#1134)

2016-07-13 Thread Abel Serrano Juste
Thank you for all your reviews.
I'm happy to have it there now :smile: 

---
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/1134#issuecomment-232518377

Re: [Github-comments] [geany/geany] Transposing mistype chaarcters (#814)

2016-07-13 Thread Abel Serrano Juste
@b4n a plugin just for this? why?

---
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/814#issuecomment-232357796

Re: [Github-comments] [geany/geany] Added keybinding for Delete from line start to current position (#1134)

2016-07-12 Thread Abel Serrano Juste
I set Cntrl + Shift +  BackSpace as default 
keybinding for the complementary relationship with "Delete to line End" 
shortcut. It is consistent with "delete previous word" and "delete next word" 
shortcuts.

---
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/1134#issuecomment-232214485

[Github-comments] [geany/geany] Added keybinding for Delete from line start to current position (#1134)

2016-07-12 Thread Abel Serrano Juste
Some time ago I posted an e-mail into the Geany-users mailing list asking for a 
keybinding for deleting from the begining of the line to the current position. 
I got some good answers and suggestions, and, some months later, here I come 
with the implementation ready to be used.
I've tested it and it looks fine.

Anything else, just let me know. I didn't touch any of the translation files, 
should I?
You can view, comment on, or merge this pull request online at:

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

-- Commit Summary --

  * Added keybinding for Delete from line start to current position

-- File Changes --

M doc/geany.txt (3)
M src/keybindings.c (6)
M src/keybindings.h (1)

-- Patch Links --

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


Re: [Github-comments] [geany/geany] Transposing mistype chaarcters (#814)

2016-07-12 Thread Abel Serrano Juste
There''s a open bug for this in Scintilla: 
https://sourceforge.net/p/scintilla/feature-requests/657/
It looks that the developer is not interested in doing it but he's open to 
others to implement it.

---
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/814#issuecomment-232153894