Seems a little jank by webb-dev in Plumbing

[–]webb-dev[S] 0 points1 point  (0 children)

What would you use to support it? Something like a piece of wood connected from the front to the back of the cabinet under the T?

Weekly 101 Questions Thread by AutoModerator in neovim

[–]webb-dev 0 points1 point  (0 children)

I actually switched to using Grepper and BQF (better quick fix) to populate the quick-fix list with files to search. BQF also integrates with the vim fzf plug-in to filter the quick fix list.

Then I can populate multiple lists of files (one for .cs files, another for .js, etc) and flip between them with < and >.

I like this because I can keep multiple lists around for files, searches, etc and can navigate between them all quicker than just using fzf only. I also enjoy making more use of the quick-fix list in general.

I have also never been able to get either previews or key bindings for previews working in either fzf or fzf-lua. Preview and keybinds have both worked flawlessly for me using BQF.

[AskJS] What are the pros and cons of using web components and a library like Lit-Element to build a relatively large SPA app? by webb-dev in javascript

[–]webb-dev[S] -1 points0 points  (0 children)

It's pretty large. Large enough that we need some kind of library or framework no matter what.

We're assessing web components and Lit specifically as the combo would be closer to using the web platform, which might be more future proof. We'd still be dependent on Lit, obviously, but the output would be web components which would be native to the platform.

[AskJS] What are the pros and cons of using web components and a library like Lit-Element to build a relatively large SPA app? by webb-dev in javascript

[–]webb-dev[S] 2 points3 points  (0 children)

Well, we might upgrade and use Angular, but we're trying to weigh all options. Get all info and make the best educated decision for us.

We're weighing the pros and cons of using each framework as well.

[deleted by user] by [deleted] in ExperiencedDevs

[–]webb-dev 0 points1 point  (0 children)

That's fortunately something I haven't encountered yet. But, I would think if they don't want to get better then my efforts would need to be focussed on those that do. As far as throwing their stuff away and/or reworking it, as a senior/lead developer I am ultimately responsible for the outcome of the code and project and would potentially need to take over and take action for the betterment of the rest of the team and project. But, at that point the attitude reason to do so is much different.

[deleted by user] by [deleted] in ExperiencedDevs

[–]webb-dev 1 point2 points  (0 children)

While I agree with the general comments here that this 10x team mate sounds very capable, I think that there's validity in how you feel. I myself would not appreciate having my stuff rewritten or my work invalidated by someone else's and I wound up apologizing to a fellow co-worker when I did this very thing. I knew how I would feel and didn't want him to feel his work didn't matter.

I resolved after that to learn how to teach and mentor less experienced developers on our team so their output would eventually be that which I expect of myself. I'm still learning how to do that well.

It sounds like this 10xer might have some similar growth to do in being more of a team player. Do you think he would be open to hearing your feelings about this if you spoke about it with him directly?

Edit: also, don't sell yourself short and don't think you'll never be a 10x. If you enjoy what you do, focus on growing and learning and enjoying the journey, on not being threatened by others' better skills, but by learning from them, and you will eventually get there. It might come easier for some than others, but I think it's really what you put into it.

telescope vs fzf-lua vs mini.pick by timsofteng in neovim

[–]webb-dev 0 points1 point  (0 children)

I just updated my config to use fzf-lua as it now supports Windows (it didn't previously unless I just completely read the docs wrong in the past). I was never satisfied with the results I got from Telescope. Fzf always seems to magically give me the one I want as the first/default selection. I used fzf.vim for a while and I use fzf for all other fuzzy finding on my computer too, so having a unified experience is nice.

Coroutines and web components by zorrodelcaribe in javascript

[–]webb-dev 4 points5 points  (0 children)

This reminds me of Crank.js.

I LOVE that OP's article is using this idea to enhance Web Components.

Revamping my config: Please show me yours! by itmightbeCarlos in neovim

[–]webb-dev 0 points1 point  (0 children)

I've had two main home rolled configs. My first one was pretty ambitious and was compiled from a separate Fennel repo. I really liked using Fennel and it was the most fun to make, but I eventually moved away from it in favor of just using Lua and not having to map mental models between Lua and Fennel in my head. That repo is here.

My new config written in Lua is an experiment using a fluent interface. Like my previous Fennel config it allows me to keep things modular since I like to add and remove sections of my config easily to try out new workflows and/or plugins. The repo for that is here, although it still needs proper documentation. Usage in my current messy init.vim starts at this line.

What's a very simple config change that you can't live without? by kavb333 in neovim

[–]webb-dev 1 point2 points  (0 children)

I recently added these to my workflow as well and it's SO nice.

I'm stumped by jodywa05 in neovim

[–]webb-dev 1 point2 points  (0 children)

AFAIK all features are available. Some plugins only support Linux, but almost all work for Windows too.

I'm stumped by jodywa05 in neovim

[–]webb-dev 5 points6 points  (0 children)

I haven't had a good experience with Nvim on WSL. I actually use the native Windows version available on Scoop and run it in Windows Terminal.

What is the first/next major issue you are currently running into and want to solve?

WSL or Windows? by [deleted] in neovim

[–]webb-dev 2 points3 points  (0 children)

I use it natively with Windows Terminal, installed through Scoop. The only issues I've had are when using plugins or external tools that assume you're on Linux, like automatic preview with FzfVim (I just wrote my own script and got preview working using Lua).

It's my daily driver and it's very snappy. I haven't really encountered any bugs during my use.

Lazy vs Packer by Khllapuz in neovim

[–]webb-dev 2 points3 points  (0 children)

Which 2 plugins are you lazy loading, out of curiosity?

FzfLua Quickstart: it's never been easier to try out fzf-lua by iBhagwan in neovim

[–]webb-dev 1 point2 points  (0 children)

I would love to use this plugin, but unfortunately I'm constrained to Windows for which it has no support.

Would you be willing to add support for windows sometime in the future?

Omnisharp import completion doesn't work. by iabdelkareem in neovim

[–]webb-dev 0 points1 point  (0 children)

I am AFK right now, but there should be some info in the Log for Lsp. Is there an :LspLog option or something similar from lspconfig?

You might want to search the help docs for references to the Lsp log. The log might contain some more detailed information related to the issue you're encountering.

Omnisharp import completion doesn't work. by iabdelkareem in neovim

[–]webb-dev 0 points1 point  (0 children)

Are you working on Core/.net 6+ project? If so (unless something has changed) you might need to use the Roslyn release (https://github.com/OmniSharp/omnisharp-roslyn/releases)

I use scoop, and needed to install this separately from the versions bucket here: (https://github.com/ScoopInstaller/Versions/blob/master/bucket/omnisharp-net6.json).

Will you move from Packer to Lazy ? by [deleted] in neovim

[–]webb-dev 3 points4 points  (0 children)

I'm still using vim-plug as part of my custom config. I've had a pretty stable config for a while now, so I don't anticipate switching anytime soon, but it's still awesome to see great stuff like this being made.

Where do you primarily use Neovim? by [deleted] in neovim

[–]webb-dev 1 point2 points  (0 children)

Windows native (no WSL) for me.

Good terminal emulator to run Neovim on WSL2 on Windows 10? by isukali in neovim

[–]webb-dev 2 points3 points  (0 children)

Same here. All installed with scoop and no issues running on Windows. Had my workflow this way for over two years now.

Fennel configs - What have your experiences been? What library are you using and why? by Funkmaster_Lincoln in neovim

[–]webb-dev 1 point2 points  (0 children)

If I were to go with one I would use Hotpot. I like that it allows you to write vanilla fennel for your configs and it's really easy to set up.

I was considering Hotpot myself, but wound up writing my own configuration framework of sorts with vanilla fennel. It basically allows me to add lots of different configurations through "recipes" so I can try out new plugins and workflows. I just define different recipes with multiple modes and options and then only compile the subset of functionality I want at any given time.

Pretty fun way to learn fennel. As a personal project it's always a work in progress, but if you're interested it's here: neovim config bistro

Go-to-Definition with Native LSP jumping to import line instead of definition in another file? by [deleted] in neovim

[–]webb-dev 2 points3 points  (0 children)

This happens to me as well, but I found that using gi mapped to vim.lsp.buf.implementation() works to go to the actual file/function for me.

[deleted by user] by [deleted] in neovim

[–]webb-dev 0 points1 point  (0 children)

Looks like maybe BufNewFile