Zed Decoded: Linux When?

Поділитися
Вставка
  • Опубліковано 12 вер 2024

КОМЕНТАРІ • 68

  • @MCNaydex
    @MCNaydex 4 місяці тому +58

    it was trully impressive the little time between open sourcing zed and usable editor on linux. good job zed community

    • @ruroruro
      @ruroruro 4 місяці тому +5

      it's truly weird that the time between open sourcing zed and getting it to work on linux wasn't zero

    • @MCNaydex
      @MCNaydex 4 місяці тому +3

      @@ruroruro why?

    • @khanra17
      @khanra17 4 місяці тому

      @MCNaydex no its not. It's been a really long time than it should be !

    • @PaezRice
      @PaezRice 4 місяці тому +1

      @@ruroruro Reading the article might make you reconsider.
      NTL it might be desirable to have the Zed team hire a full time Linux dev some day.

  • @arubaga
    @arubaga 4 місяці тому +25

    Cross-platform UI in Rust is a really interesting topic!

    • @PaezRice
      @PaezRice 3 місяці тому

      IIRC they use egui for the UI.

    • @zekiz774
      @zekiz774 2 місяці тому +2

      ​@@PaezRiceThey made their own UI library called GPUI

  • @SamuelGirma-ko3fl
    @SamuelGirma-ko3fl 4 місяці тому +3

    Good job Zed team! Ever since it got announced; i have been awaiting the executable for Linux :)

  • @romaninsh
    @romaninsh 4 місяці тому +15

    Thank you Dmitry!

  • @Caellyan
    @Caellyan 4 місяці тому +5

    When targeting GNOME, just add 4px padding and 100% rounding to everything and you're right on track. 🙃
    I completely disagree with your Wayland/X11 stance - rust probably has it better than C++, but in my experience, X11 has SO MANY weird edge cases you have to deal with which leads to 10x the amount of code while Wayland has maybe 2 protocols you need to support and it's straightforward to do (if supported).

  • @Onyx-it8gk
    @Onyx-it8gk 4 місяці тому +2

    I can't wait for the Linux release! 😭 Thanks for the update!

  • @zekiz774
    @zekiz774 2 місяці тому +1

    Zed is pretty cool although I probably won't use it a lot since I already use NeoVim.
    But GPUI is pretty neat

  • @IshchenkoVitaliy
    @IshchenkoVitaliy 3 місяці тому +1

    Friends, thank you for your work. I built Zed for Debian 12 with x11 and found the release size near 5.2 GB, and the launch-file size around 784 MB. Is this how it should be?

  • @rtx_co3644
    @rtx_co3644 4 місяці тому +2

    You guys are amazing, keep it up!

  • @AseshShrestha
    @AseshShrestha 2 місяці тому +2

    This is the perfect IDE for macOS. VS Code is bloated and after using Zed, there's no going back. Though it lacks some features but I careless about it.

  • @tandlose
    @tandlose 4 місяці тому +2

    so excited!

  • @RaresCelTare
    @RaresCelTare 3 місяці тому +1

    41:44
    When it comes to distributing, I'd say it'd be better if you guys didn't distribute any binaries at all.
    Anyone can compile from the releases, but also, they can get a binary installation through nix package manager (nixOS), which can be installed on other linux distribution, even macOS.
    And compared to flatpaks and appimages, things installed through nix don't incur the containerization slowdown penalty while also working on all* distributions and not needing to package for each package manager(apt, dnf, pacman, apk, portage, xbps and so on and their respective linux distributions).
    In any case, distributions maintainers will package zed, you guys don't need to worry for such things.

  • @achrafash
    @achrafash 4 місяці тому +7

    this series makes me wanna learn rust so bad

    • @dfjab
      @dfjab 4 місяці тому

      @achrafash I can recommend "Learning rust by writing entirely too many linked lists", it is *such* a great guide and you write actual code! (Its pretty funny too) just to dip your toes in. But as always, the best way to get started is to just do a project in it and stumble as you go.

  • @brivism
    @brivism 4 місяці тому +1

    love the series!
    is the terminal you are using in the video ghostty?

    • @thorstenball5773
      @thorstenball5773 4 місяці тому +1

      Yes, it is!

    • @Onyx-it8gk
      @Onyx-it8gk 4 місяці тому

      I wonder how they got it. I thought it wasn't even available yet? Maybe they know the dev...?

    • @brivism
      @brivism 4 місяці тому

      There is a private beta. You can sign up and get into the waiting list. From time to time Micheal opens up next invite wave and picks new batch from the list (I think randomly). It all happens on discord

    • @andherium
      @andherium 3 місяці тому

      @@Onyx-it8gk Not only did he get it, he has also contributed to it

  • @jackelofnar
    @jackelofnar 3 місяці тому +1

    Can't wait for the Linux version to be released

  • @ffunktor
    @ffunktor 4 місяці тому +1

    Awesome. Thanks for this video.

  • @beneustace4236
    @beneustace4236 4 місяці тому +2

    Hell yeah!!

  • @johnmckown1267
    @johnmckown1267 29 днів тому

    Hum, I compiled Zed on my Fedora 40; just out of curiousity. So far, I'll stay with vim. But I'm not a developer. I just retired from "system administrator" position on a IBM z mainframe.

  • @pablodenapoli1667
    @pablodenapoli1667 3 місяці тому

    ¡Great work! Zed seems to already work quite well in Linux ! So I hope that soon there is an official alpha release so that more people gets involved. The only drawback that I see is that the performance is not as good as one would hope (tested in a machine with 8M of RAM) and the binary takes a lot of time to compile and is somewhat over-bloated(¿ a binary of 747M just for editing a couple of files?). For some use-cases, the collaborative features of Zed or the IA are not needed. So I would suggest to allow to build a light-weighted version of it without this features. Or move them to extensions. A shorter compilation time would mean an easier development and hence more rapid progress. I see that this is a great draw-back of rust. Rust programs usually take too long to compile...

    • @weiSane
      @weiSane 3 місяці тому +2

      The slow compilation time is result of the trade off for the safety rust brings. How people not get this 🤦🏻‍♂️

    • @pablodenapoli1667
      @pablodenapoli1667 3 місяці тому +1

      @@weiSane i know. But I rather.prefer languages like Go or D which are esier to use and fast to compile!

    • @pablodenapoli1667
      @pablodenapoli1667 3 місяці тому

      Also the contributors did a fantastic job in fixing the dead key issue in just a couple of days!

    • @weiSane
      @weiSane 3 місяці тому +2

      @@pablodenapoli1667oh I get you now. I thought you were only mad at it for the sake of it without knowing why it’s like that. Yes Go and other languages are great. Fast compilation should actually be a feature 😂but then sometimes it’s understandable when compromises have to be made.

    • @urisinger3412
      @urisinger3412 3 місяці тому +2

      @@weiSane safety checks dont take that much time, most of the time is spent on llvm and linking

  • @samucancld
    @samucancld 4 місяці тому

    great job! already using it from linux

  • @xavhow
    @xavhow 2 місяці тому

    it’s really cross-platform ui vs native ui debate. Sure native ui offer best performance, user experience etc. But is it really worth it?

  • @zanylyf
    @zanylyf 2 місяці тому

    I know it’s still in the early development stages but I think this is gonna take over....if you would also decrease memory use like sublime uses like 10mb of ram on windows but vs code uses 200 while idle and while using uses 600mb so it would be great if you can keep it close to 10mb...
    Wishing you luck 🎉

  • @snarkyboojum
    @snarkyboojum 2 місяці тому +1

    Fascinating! I hadn't come across Blade before. Cool to see it reusing WGSL (the WebGPU shader language), and Dzmitry looks like the right guy to be leading the direction of the graphics approach taken in Zed given his stature in the Rust graphics community and his leadership role with wgpu etc. Very cool!

  • @khanra17
    @khanra17 4 місяці тому +4

    Please remove the annoying caption 🤦.
    They will turn on themselves who needs caption 😐

  • @JJ-rv7tt
    @JJ-rv7tt Місяць тому

    Angular when?

  • @wolfisraging
    @wolfisraging 4 місяці тому +1

    !Linux When!

  • @RaresCelTare
    @RaresCelTare 3 місяці тому

    BSDs wen?

  • @user-ie8in1un8e
    @user-ie8in1un8e 3 місяці тому

    Can some one explain to me what is Zed,
    Thanks

    • @adammontgomery7980
      @adammontgomery7980 3 місяці тому +2

      Another code editor. It's written in Rust to bring all the fanboys on board.

    • @kirillvoloshin2065
      @kirillvoloshin2065 3 місяці тому +1

      code editor, originally made for macOS. feels very fast and supports vim mode out of a box, also supports keyboard shortcuts from some code editor, for example, vscode.

  • @jonkoops
    @jonkoops 4 місяці тому +4

    Please don't include captions like this, there is a reason why UA-cam has it's own closed-captions system, and if you do please also make sure to use the correct terms rather than guessing. Otherwise great video!

    • @andherium
      @andherium 3 місяці тому +1

      They provided such a good video and that's all you had to comment about? Don't be an asshole. Otherwise you're good guy.

    • @Reichstaubenminister
      @Reichstaubenminister 3 місяці тому +2

      ​@@andheriumHe'll be whatever he wants to be, just like the strong and brave woman in the video.

    • @vitorgabrielgomesrodrigues
      @vitorgabrielgomesrodrigues Місяць тому

      ​@@andherium Can he not provide feedback?

  • @DeveloperOfGames
    @DeveloperOfGames 4 місяці тому +4

    absolutely brimming with confidence in this project

  • @dhrubrawat9316
    @dhrubrawat9316 4 місяці тому +4

    window when?

    • @raunakchhatwal5350
      @raunakchhatwal5350 4 місяці тому +7

      But why?

    • @hyltoncarboo8303
      @hyltoncarboo8303 4 місяці тому +4

      Naa. Windows gets no love. 😊

    • @mohitkumar-jv2bx
      @mohitkumar-jv2bx 4 місяці тому +1

      I am gonna go with hmmmm Never?😁

    • @matrioxplayz1607
      @matrioxplayz1607 4 місяці тому +1

      probably after they proper linux support

    • @NotAFoe
      @NotAFoe 4 місяці тому

      I rarely use windows but I've just compiled it from source for it. Works well so far.
      Edit: hehe compiled zed from source for windows :)

  • @parag60288
    @parag60288 14 днів тому

    This is RUST taking over....🔥

  • @InfinityN
    @InfinityN 3 місяці тому +1

    For the love of god, use SSDs. GNOME can suck it, if you force CSDs Zed will look out of place on most Linux installations. It won't look native.

    • @skewty
      @skewty 2 місяці тому

      Gnome represents the vast majority of the small market share linux has and thus cannot be disregarded. Perhaps what is a better way forward is a community versions of Mutter that has CSD patches applied. Hopefully AUR, COPR and Ubuntu provide up-to-date package.

  • @neunistivlija
    @neunistivlija 4 місяці тому +2

    Zed's dead baby Zed's dead

  • @Reichstaubenminister
    @Reichstaubenminister 3 місяці тому

    No.