• 0 Posts
  • 30 Comments
Joined 2 years ago
cake
Cake day: July 12th, 2023

help-circle



  • Once I got used to single-directory filetree browsing plus fuzzy finding, I have never been able to comfortably use a traditional filetree anymore. most of them are not designed for efficient keyboard use (vscode and intellij at least) and don’t really help understanding the structure of the project imo (unless there arent that many files). For massive projects I find it easier to spend the initial effort of learning a few directory names and the vague structure using oil.nvim, and then eventually I can just find what I need almost instantly by fuzzy finding.


  • murtaza64@programming.devtoLemmy Shitpost@lemmy.worldamerican culture
    link
    fedilink
    arrow-up
    7
    arrow-down
    1
    ·
    edit-2
    2 months ago

    I would actually argue that in many ways it’s increasing, at least in Pakistan where I have family, although these aren’t the only countries with growing fascism and regressive social politics (see lots of Europe and of course the US).

    But your comment was about stories of cultural importance, not race or gender or class; I can’t help but feel offended that you would choose to shit on my culture for some reason instead of identifying relevant stories like you did for the other cultures you mentioned in your comment. I agree that those -isms should be criticized, but India definitely caught a stray from your comment.















  • VS Code has some pretty good ide features for python, including understanding types, highlighting errors and warnings, linting, navigation features such as go to definition or go to references, and basic refactoring capabilities like rename symbol. These features are enabled by the python language server (pylance, in this case, which is Microsoft’s proprietary one).

    You can also get the same features in other editors that support the language server protocol. For example, I use neovim and my setup supports those same IDE features I used to use in VS Code for python.