From e2ebb8962b93abd91cb6a75acd69a288e3a716c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Tue, 26 Jan 2021 21:28:05 -0500 Subject: [PATCH] change function 'q' key --- README.md | 2 +- livie.el | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fd9fee4..4af8b8e 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ with the buffer are shown below. |----------------|------------------------------|-------------------------------------------------------| | n | `next-line` | Move cursor to next line | | p | `previous-line` | Move cursor to previous line | -| q | `livie-quit` | Bury the `*livie*` buffer | +| q | `livie-quit` | Close `*livie*` buffer | | s | `livie-search` | Make a new search | | > | `livie-search-next-page` | Go to next page | | < | `livie-search-previous-page` | Go to previous page | diff --git a/livie.el b/livie.el index 90ee9c0..8de69c3 100644 --- a/livie.el +++ b/livie.el @@ -205,7 +205,7 @@ too long)." (defun livie-quit () "Quit livie buffer." (interactive) - (quit-window)) + (kill-buffer)) (defun livie--format-author (name) "Format a channel NAME to be inserted in the *livie* buffer." -- 2.45.2