Thomas M Kehrenberg

Results 112 comments of Thomas M Kehrenberg

I'm using linux but I had a similar problem because I configured my left alt key to be used as the level-3 key because I often use level-3 characters on...

Oh yes, that seems highly related. Not sure whether I should close this issue as duplicate. EDIT: ah, there's a potential solution in the other issue. I will try it...

I tried out the solution in #8993 (sorry for the delay): ```json { "context": "Editor", "bindings": { "ctrl-d": "editor::MovePageDown", "ctrl-u": "editor::MovePageUp" } }, ``` and this _does_ move the cursor,...

> What would be the effect if someone uses a stub with mypy that uses this feature without `--enable-incomplete-feature`? Here is what mypy reports: ```python from typing import TypedDict from...

I came up with a proposal that aims to obviate the need for using descriptor classes for this, by providing a new mechanism to declare function types with attributes that...

I'm running on GNOME 45 with ``` gsettings set org.gnome.mutter experimental-features "['scale-monitor-framebuffer']" ``` to avoid the electron `WaylandFractionalScaleV1` problem, and that works well with ``` --enable-features=WaylandWindowDecorations --ozone-platform-hint=auto ``` but I...

Thanks for implementing this! It looks to me like `:buffer-index 9` brings you to the last buffer but I think that might be better handled with a separate command like...

I wanted to try this out with this key mapping: ```toml [keys.normal.space] 1 = ":buffer-index 1" 2 = ":buffer-index 2" 3 = ":buffer-index 3" 4 = ":buffer-index 4" 5 =...

#8471 has been merged, so it should now be possible to use `space = {1 = ":buffer-index 1"}` as a mapping.

I don't think anyone expects the order to be fixed, but the current internal order is always visible in the bufferline, so I don't see the problem there. (If the...