aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2024-10-19 19:22:32 +1300
committerTom Ryder <tom@sanctum.geek.nz>2024-10-19 19:24:05 +1300
commit82fd77d03d321215c4e82889f2effff4b904db49 (patch)
tree2ad3e3675f9501d927c02e1e188f32deadc46ecf
parentMerge branch 'release/v12.42.0' into develop (diff)
downloaddotfiles-82fd77d03d321215c4e82889f2effff4b904db49.tar.gz
dotfiles-82fd77d03d321215c4e82889f2effff4b904db49.zip
Allow terminal title operations again
Let's see if it still causes the problems it used to.
-rw-r--r--vim/vimrc6
-rw-r--r--x/Xresources12
2 files changed, 0 insertions, 18 deletions
diff --git a/vim/vimrc b/vim/vimrc
index e9e52b49..e82b25a2 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -823,12 +823,6 @@ endif
"
set splitbelow splitright
-" I don't like the titles of my terminal windows being changed, especially
-" when changing them back doesn't actually work. Just leave them alone, Vim,
-" even if you think you can handle it.
-"
-set notitle
-
" We really don't want a mouse; while I use it a lot for cut and paste in X,
" it just gets in the way if the tool running in the terminal tries to use it
" too. Mouse events should be exclusively handled by the terminal emulator
diff --git a/x/Xresources b/x/Xresources
index 829b208e..1284f223 100644
--- a/x/Xresources
+++ b/x/Xresources
@@ -2,24 +2,12 @@
XTerm.termName: xterm-256color
/**
- * Just use "xterm" as the title, no need to complicate it with the name of the
- * actual binary called.
- */
-XTerm.title: xterm
-
-/**
* Don't pass mouse events to applications, even if they ask for it; mouse
* interaction with command-line tools isn't normally very well-written anyway.
* Better just to treat it as text.
*/
XTerm.vt100.allowMouseOps: false
-/**
- * Don't let applications set the window title; it's usually more confusing
- * than helpful, with things like command wrappers getting in the way.
- */
-XTerm.vt100.allowTitleOps: false
-
/* Don't munge characters' 8th bit with Alt, send Escape prefix instead */
XTerm.vt100.altIsNotMeta: true
XTerm.vt100.altSendsEscape: true