Sakari Cajanus

Results 12 comments of Sakari Cajanus

@DVAlexHiggs does replacing e.g.: `{% set source_model_name = config.get('meta')['source_model_name'] -%}` with `{% set source_model_name = model.config.meta.source_model_name -%}` work for you as of now? Otherwise can you provide a minimal working...

@DVAlexHiggs my understanding is that none of the config is treated as final until the full graph is parsed, i.e. there is no (pre)parser that would check if a part...

FYI this is already fixed in the dev branch, started looking into it and found it already fixed.

Hello, No, `hidutil` is used to map HID device keycodes (https://en.wikipedia.org/wiki/USB_human_interface_device_class), and on keyboards they correspond to keypresses. So you can use `hidutil` to change which key AltGr is seen...

Related: https://github.com/folke/lazy.nvim/issues/858

Thanks for looking into it! My workaround for this specific case was to keep using BufReadPost without `++once`, which I think was the documented version in Vim: https://vimhelp.org/usr_05.txt.html#restore-cursor. This means...

What does your `UserSignup` class and specifically its `__init__` type hinting look like? As well as the `UserPostgresRepository`, I guess. I haven't used this package specifically, but I've looked into...

+1 For this -- the linked documentation is also using Python 2 syntax for printing, e.g. ``` import yaml document = """ a: 1 b: c: 3 d: 4 """...

Hi, I managed to reproduce this in Windows and Neovim with d2 version 0.6.9. I also found a workaround, that points to a possible solution: It seems like the file...

I don't have admin rights on my (client's) Windows laptop, which makes installing software a bit cumbersome. I can still try to setup Go and compile this sometime next week...