jabdinghoff
jabdinghoff
> Please check https://nklayman.github.io/vue-cli-plugin-electron-builder/guide/guide.html#handling-static-assets. This is the only thing I can do for now. I am trying to use this with quasar which can not access it's fonts, because of...
So for me this also started this week with no direct changes to my dev setup, except maybe like docker and windows updates... I was on `"electron": "33.2.1"`, but updating...
Maybe this is actually a nushell bug? The script def has a faulty regex It should be ```nu zoxide query -ls $buffer | parse -r '(?P\d+(?:\.\d+)?)\s+(?P.+)' ``` instead of https://github.com/nushell/nu_scripts/blob/765555beddc3c81555e6b70abb2542c37a1c0ad6/custom-menus/zoxide-menu.nu#L16-L17...
> I have found this: [Saghen/blink.cmp#157](https://github.com/Saghen/blink.cmp/discussions/157) > > Working fine for me what does the nvim-autopairs config need to look like to work with `completion = { accept = {...
oh wait this is missing `.with_partial_completions(true)` on the line editor. with: ```rust let mut line_editor = Reedline::create() .with_completer(completer) .with_partial_completions(true) .with_menu(ReedlineMenu::EngineCompleter(Box::new(columnar))) .with_edit_mode(edit_mode); ``` it does result in `You entered: AAAAAAC`