3
Xoka
3y

Any Vim users here?
Do you use Vim in VSCode and Jetbrains IDEs with ideavim?
If yes, Can you help me with some use cases? Thanks

Comments
  • 4
    CLI vim or go home. Fuck those shitty vom plugins.
  • 2
    @petergriffin Found the gatekeeper.
  • 2
    @kamen wdym? I’m quite happy with vscode and use other ide’s too. It’s just that I prefer my customized vim on the terminal rather than the keymaps on the editors. They are all wonky for what you know, or don’t play well with other editor specific features.
  • 2
    @petergriffin I mean let people use what they want. If vim emulation works for them, let them use it. If it doesn't work for you, use whatever you find working well for you.
  • 2
    Does vim have eslint and prettier?
  • 1
    @Devnergy It's possible to use pretty much any linter with Vim.

    I use Neovim (which is basically the same) with a plugin called ALE, and that integrates just about every linter under the sun. I use ESLint and Flow in JavaScript, and both Psalm and Codesniffer in PHP.
  • 1
    As a Neovim user myself, I think trying to run it within something else is a non-starter.

    If you're looking to get better completion or something like that I'd take a look at COC.nvim.
  • 2
    @kamen he is not gatekeeping tbh, but merely reflecting on him not liking using plugins that emulate Vim functionality, his words were a bit harsh tbh, but I did not consider it gatekeeping.

    I also don't enjoy plugins that emulate vim functionality, except for Evil for Emacs. But won't stop others for using what makes them happy and productive. Peace love and code ma brothas
  • 2
    OP I don't use it as a plugin, but what use cases do you mean fam? maybe I can offer some assistance
  • 1
    @AleCx04 Finally someone is willing to help. thank God!

    BTW, my first issue is:

    Say I copied something from StackOverflow or anywhere. Now I want to paste it. But first I need to delete some texts in the editor then paste it. but when I delete it using "dd", it seems like it cuts the texts, and when I want to paste it, it pastes the deleted line :/ How do you cope up with this issue?
  • 1
    @Xoka I believe that what you want then is the complete deletion of something, try deleting it with _d rather than dd.

    Lemme know if that works and we can go deomt there
  • 1
    Not sure why, but _d doesn't seem to do anything, but d_ on the other hand does delete the line but it also cuts it :/ so, while pasting, it pastes the deleted line again :/
  • 0
    @Xoka ctrl shift v? does it do anything?
  • 0
    Nope. It doesn't actually :(
Add Comment