Hi :smiley:
I've added a keybinding for switching focus to the split window editor (in case it's enabled). This solves #631
I've set F3 as keybinding by default because:
1. Follows the idea of the other "Focus Keybindings" family: F2 -> Switch to Editor, F4 -> Terminal, F7 -> Search bar
2. Doesn't collides with any other default keybindings and has very few possibilities of collision with user-defined keybindings.
3. Even in the case it collides with other user-defined keybinding, it's not a big deal since it just grab the focus on split window only in the case it's being displayed. If user doesn't like it, he/she can always change this.
4. It's a plugin shipped along with geany.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/721
-- Commit Summary --
* Keybinding for switching focus to splitwindow. Fix #631
-- File Changes --
M plugins/splitwindow.c (16)
-- Patch Links --
https://github.com/geany/geany/pull/721.patchhttps://github.com/geany/geany/pull/721.diff
---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/721
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
As mentioned in #2030.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/2106
-- Commit Summary --
* Fix regex to resolve confusion on the removed double space
* Update copyright years
-- File Changes --
M README (2)
M README.Packagers (2)
M doc/geany.txt (2)
M geany.nsi.in (2)
M geany_private.rc (2)
M po/ar.po (178)
M po/ast.po (178)
M po/be.po (181)
M po/bg.po (178)
M po/ca.po (181)
M po/cs.po (181)
M po/da.po (180)
M po/de.po (180)
M po/el.po (222)
M po/en_GB.po (178)
M po/es.po (180)
M po/et.po (181)
M po/eu.po (181)
M po/fa.po (178)
M po/fi.po (181)
M po/fr.po (180)
M po/gl.po (181)
M po/he.po (181)
M po/hi.po (178)
M po/hu.po (181)
M po/id.po (181)
M po/it.po (180)
M po/ja.po (90)
M po/kk.po (181)
M po/ko.po (178)
M po/lb.po (178)
M po/lt.po (181)
M po/lv.po (181)
M po/mn.po (178)
M po/nl.po (181)
M po/nn.po (178)
M po/pl.po (181)
M po/pt.po (180)
M po/pt_BR.po (181)
M po/ro.po (178)
M po/ru.po (0)
M po/sk.po (0)
M po/sl.po (0)
M po/sr.po (0)
M po/sv.po (0)
M po/tr.po (0)
M po/uk.po (0)
M po/vi.po (0)
M po/zh_CN.po (0)
M po/zh_TW.po (0)
M scripts/update-year-in-po.sh (0)
M src/about.c (0)
-- Patch Links --
https://github.com/geany/geany/pull/2106.patchhttps://github.com/geany/geany/pull/2106.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/2106
- improve and extend logging of IPC socket errors (Windows and non-Windows)
- do not raise the main window on Windows when `--list-documents` is used
- bind the TCP port used for the IPC socket exclusively on Windows (should help with #641)
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/2111
-- Commit Summary --
* Use GLib logging for socket error messages
* On Windows, raise the main window only when needed for IPC calls
* Windows: Use SO_EXCLUSIVEADDRUSE flag for IPC socket
-- File Changes --
M src/libmain.c (14)
M src/socket.c (79)
-- Patch Links --
https://github.com/geany/geany/pull/2111.patchhttps://github.com/geany/geany/pull/2111.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/2111
Double asterisks in a code block indented by four spaces should be ignore, but that's not exactly the case. Play with spaces and single/double asterisks in the code block below and note the highlighting of the headings:
```
code with *asterisks **
# test *a* b
# Testing `pnpm recursive install` behavior.
```
Screencast:
![geany markdown highlight breaks](https://user-images.githubusercontent.com/33569/50580620-9d686280-0…
--
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/2029
Geany wrongly colors sequences starting with a percentage sign (%).
Program that illustrates some issues:
```
n = 1337;
w = r = 5
x = n%w + 1; # "%w " is recognised as the beginning of an array of words, like %w[ ... ]
y = n%r ; # "%r " is recognised as the beginning of a regular expression
string = %= this is a string = ; # this one is correctly colored
n %= w; # this is the most important issue, the expression is equivalent to n = n % w; but it's recognised like the previous line
print x%r # %r is also recognised like a beginning of regex, but in this case, the %= of the previous line is still not terminated (no equal sign encoutered).
```
Tested on Geany 1.33 on Linux (Debian).
--
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/2038
Several times ran into serious problems (scratching a file) because I confuse the highlight in red of the unsaved files' tab with the highlight of the currentlly displaid file. I would like to be able to inverse the parameters, that is:
have in red the tab's title of the currentlys displaid file
have inversed background for the tab of not yet saved files.
--
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/2046