From a258401ad0869c65f3f22b6e2a8eba2c07c40573 Mon Sep 17 00:00:00 2001 From: "Bradley M. Kuhn" Date: Wed, 10 Dec 2025 10:46:39 -0800 Subject: [PATCH] vim: why wouldn't it just :set term=$TERM by default? MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I'm not sure *why* vim didn't work in xterm when I upgraded to Debian trixie, but it definitely had screen redraw issues of all sorts until I did a … :set term=xterm … it seems that if there is a $TERM environment variable coming in, that vim should use it, no? YA reason why I primarily use Emacs. 😆 --- vim/vimrc | 1 + 1 file changed, 1 insertion(+) create mode 100644 vim/vimrc diff --git a/vim/vimrc b/vim/vimrc new file mode 100644 index 0000000..5108cc8 --- /dev/null +++ b/vim/vimrc @@ -0,0 +1 @@ +:set term=$TERM