From 7c6cf420751cfe0f1224fd8d6b83fff209b2f032 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Sun, 30 Oct 2016 01:50:21 +0200 Subject: [PATCH] thin-cursor.lua: update comments --- plugins/degesch/thin-cursor.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/degesch/thin-cursor.lua b/plugins/degesch/thin-cursor.lua index ff75385..13b5f5c 100644 --- a/plugins/degesch/thin-cursor.lua +++ b/plugins/degesch/thin-cursor.lua @@ -15,13 +15,14 @@ -- OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -- CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -- - --- If tmux doesn't work, add the following to the configuration and reload it: +-- If tmux doesn't work, add the following to its configuration: -- set -as terminal-overrides ',*:Ss=\E[%p1%d q:Se=\E[2 q' -- Change the "2" as per http://invisible-island.net/xterm/ctlseqs/ctlseqs.html local out = io.output () out:write ("\x1b[6 q"):flush () + +-- By registering a global variable, we get notified about plugin unload x = setmetatable ({}, { __gc = function () out:write ("\x1b[2 q"):flush () end })