SilverFox

Results 44 comments of SilverFox

@zakeryooo Not sure if it works, but maybe you can try with the below code as an workaround `var shops = ctx.Shops.Where(s => s.Regions.Contains((Region)(object)region)).ToList();`

@zakeryooo Try this? `var shops = ctx.Shops.Where(s => s.Regions.Contains((Region)(object)region.ToString())).ToList();`

The same for `1.3.0` in win10(22H2, 19045.4651) + Python 3.12.4 And add `-b 192.168.xxx.xxx` to bind to special ethernet and apply the workaround by [gordonaspin](https://github.com/gordonaspin) works for me. ```py connect...

Seems it only happen on windows and `conpty` is enabled(enable by default) xterm try to send `\x1b[I`/`\x1B[O` when `sendFocus` is true, but tabby not ignore this event https://github.com/xtermjs/xterm.js/blob/c4b707e9ca8ba8e27cecb859fe80ccebeca7375a/src/browser/CoreBrowserTerminal.ts#L270-L272 https://github.com/Eugeny/tabby/blob/93e43067de6aa48d71e1fbb0cbb4168a6949a926/tabby-terminal/src/api/baseTerminalTab.component.ts#L492-L500