Christian Maniewski
Christian Maniewski
I made an up-to-date fork using this PR and changed the command to [`fd`](https://github.com/sharkdp/fd) like so: ``` inoremap fzf#vim#complete#path_relative('fd') ``` And I can say it works really, really well. Please...
@ybbond sure, there's not much to it. Here are the three lines in my `.vimrc`: ```vim " I use plug Plug '/usr/local/opt/fzf' Plug 'chmanie/fzf.vim' inoremap fzf#vim#complete#path_relative('fd') ``` EDIT: Oh sorry,...
Thank you for your thoughts and detailed answer! I totally get your notion about the tags and I agree. It's just something I saw somewhere else that could solve my...
Fantastic! I'll take a shot at it :)
Great work! Right now I'm creating a separate controller for every route I want to redirect to. It'd be really nice to see this merged. But I think you might...
We are on version `0.21.3` and are still seeing this (a lot). @thiagodelgado111 was working on a fix, maybe he knows more.
The order of `Object.keys` is not deterministic. If there's a part of the code that relies on that, we should change that. There are libraries like https://github.com/substack/json-stable-stringify that could be...
I added #338. Do you think it could be related? In my case setting the system clock to anything, really, panics already.
Ah, thanks, yeah I adjusted the title. So I got the blinky example running with the following setting: ```rust let clocks = rcc .cfgr .use_hse(8.mhz()) .sysclk(8.mhz()) .pclk1(8.mhz()) .freeze(&mut flash.acr); ```...
Thank you for the detailed explanation, @fishrockz! I think I regret going for the blue pill already. I was used to having access to proper chips that I put on...