I wonder if the author might be willing to reconsider. He should have newfound appreciation for how annoying name collisions can be.
Good to know. I'll keep avoiding his software.
> W A R N I N G! Your browser is not supported by this site.I cannot guarantee that things will work as they should. Consider downloading either Mozilla >=1.4 or Internet Explorer >= 6
And it states:
> It has been tested on Internet Explorer 6 and Mozilla 1.4.
I was not quite sure if this was a joke, or if the homepage was really not updated for such a long time (it says "Created by Kovid Goyal © 2003").
Anyway, for minimal work, I think you can simply remove the warning, and this statement about IE6/Mozilla 1.4, because as far as I can see, everything works fine.
Edit: Ah, in the 2018 thread, someone noticed the same thing: https://news.ycombinator.com/item?id=17924093
* http://jdebp.uk./Softwares/nosh/guide/commands/TERM.xml#MIS-...
* https://invisible-island.net/xterm/xterm.faq.html#other_vers...
The correct terminal type, per Dickey terminfo, is "kitty". (The PuTTY variant KiTTY is apparently also "putty".) And the terminfo database lends itself both to copying individual records and to having extra records in one's home directory.
* https://invisible-island.net/ncurses/terminfo.ti.html#tic-ki...
* https://invisible-island.net/ncurses/terminfo.ti.html#tic-pu...
ncurses from FreeBSD Ports is built with terminfo, but the ncurses from base uses termcap. Kind of a mess :)
Most application ports have USES=ncurses without arguments, which means they will prefer the ports ncurses — if it's installed at build time. Official binary packages are built without it installed of course. So rebuilding the ncurses apps you care about would make them use terminfo.
Also you can convert terminfo to termcap: https://invisible-island.net/ncurses/man/infotocap.1m.html
I was a heavy terminal user already but running macOS at work and linux at home, I got really annoyed by having to memorize different shortcuts. So I just gave up and started using tmux. Now, no matter what platform I am on, the behaviour is pretty much the same. I just use Kitty because it performs really well.
[1] https://web.archive.org/web/20180821055830/http://www.joehan...
Scrolling itself seems smooth for me in general.
The major difference between them is that alacritty is written in rust (and has a really nice config that auto-reloads) and kitty is written in C with a smattering of python.
I think it lacks features compared to Kitty. At the very least tabs for multiple sessions and support for a transparent background made it not an option for me.
Kitty has replaced the standard terminal in Ubuntu for me, and I am quite happy with its performance and Unicode support.
Also, a whole lot of it is written in Python and I actually contributed smaller changes in pull requests. It feels good to be able to just change things.
P.S. weirdly on Linux it's entirely opposite; vim in an xterm is much faster than gvim.
I wish ncurses were more eager to adopt descriptions of innovations in terminal emulator design.
[1] https://github.com/kovidgoyal/kitty/issues/160#issuecomment-...
[2] https://sw.kovidgoyal.net/kitty/protocol-extensions.html#ext...
On both real (DEC) terminals and terminal emulators, background colour erase is settable off and on, with DECECM; so a full-screen application can set the behaviour and know what the colour is going to be, leading to more efficient screen redraws. The ncurses/terminfo model, in contrast, is that the behaviour is fixed on or off, and a boolean (named bce) in the database tells softwares which it is for any given terminal type.
In reality, it is the paradigms of ncurses and terminfo that are the problems here.
* http://jdebp.uk./Softwares/nosh/guide/commands/TERM.xml#MEAN...
It's obviously better than iterm2, but Apple's built-in terminal is actually rather fast.
Please stop spreading cargo cult information dating from 10.4 days. Terminal.app has been great ever since 10.6.
I have to learn a few new shortcuts, but I am quite satisfied so far, it does all things I want in a terminal that Alacritty did not, like tabs and transparency.
"fast"? What, terminal emulation is slow now? Needs hardware acceleration? Be serious.
A graphical terminal emulator should use underlying graphical environment features/libraries for things like hardware-assisted rendering.
https://danluu.com/term-latency/
> A graphical terminal emulator should use underlying graphical environment features/libraries for things like hardware-assisted rendering.
I've mostly done OpenGL recently, and I think xterm (which is fast) is an exception in that it uses just X11 primitives, but I also know that some font frawing APIs are very slow. GDI is what I have in mind mostly. So using Hardware more directly (i.e. OpenGL) might be not the worst idea.
But it sounds like what should really be written is a fast, hardware-backed, low-latency but limited-feature graphics library.
Then have your terminal use that. I still say that direct awareness of the hardware is _way_ too much coupling.
I've also heard about performance issues with high res, large terminals. It's a lot of pixels to throw at the screen and I'm sure most terminal emulators were written with much smaller screens in mind.