diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2024-10-19 19:22:32 +1300 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2024-10-19 19:24:05 +1300 |
commit | 82fd77d03d321215c4e82889f2effff4b904db49 (patch) | |
tree | 2ad3e3675f9501d927c02e1e188f32deadc46ecf | |
parent | Merge branch 'release/v12.42.0' into develop (diff) | |
download | dotfiles-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/vimrc | 6 | ||||
-rw-r--r-- | x/Xresources | 12 |
2 files changed, 0 insertions, 18 deletions
@@ -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 |