• 0 Posts
  • 6 Comments
Joined 1 year ago
cake
Cake day: August 27th, 2023

help-circle
  • 0xDEADBEEFCAFEtoLinuxGhostty terminal is out!
    link
    fedilink
    English
    arrow-up
    12
    ·
    1 month ago

    According to this this slideshow:

    At a fundamental level, this is the state of terminal emulators today as I saw it. You have fast terminals, feature rich terminals, and native terminals. You can pick at most two properties to have.

    Ghostty aims for – and in my opinion already achieves – all properties.

    Also, calling out the warning signs, my bar for a native platform experience is that the app feels and acts like a purpose-built native app. I don’t think this bar is unreasonable. For example, I don’t think it’s unreasonable to say that Alacritty is kind of not native because new windows create new processes. Or that Kitty is kind of not native because tabs use a non-native widget. And so on (there are many more examples for each).




  • zellij is a terminal multiplexer like tmux which for example allows you to have multiple terminals shown in the same window. It works both locally and over SSH. Which GUI would do the same?

    I’m currently using zellij after previously having used tmux. For me zellij is a direct upgrade in every way, and the default tmux keybindings are even supported out of the box in zellij which makes transitioning incredibly easy. The only downside is that I have no idea how to pronounce the name.


  • That’s a bummer. I guess what I though was PyO3 type hints was actually just PyCharm guessing at the types.

    I tried creating a .pyi file and it seems to be a pretty big improvement over no type hints, but I don’t know how to add type hints for modules added with PyModule::add_module and adding the .pyi file seems to make the type checker not know about my other modules.

    Would you mind sharing the script for auto generating type hints? Keeping them in sync manually would be pretty annoying.