From cbba87b06211637249cb59d8381dac00ae8f0870 Mon Sep 17 00:00:00 2001 From: Lars Tveito Date: Wed, 4 Dec 2019 16:34:11 +0100 Subject: [PATCH] Trim candidate list of *things* --- focus.el | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/focus.el b/focus.el index 1240a41..82343d8 100644 --- a/focus.el +++ b/focus.el @@ -165,9 +165,7 @@ according to major-mode. If `focus-current-thing' is set, this default is overwritten. This function simply helps set the `focus-current-thing'." (interactive) - (let* ((candidates '(symbol list sexp defun - filename url email word - sentence whitespace line page)) + (let* ((candidates '(defun line list paragraph sentence sexp symbol word)) (thing (completing-read "Thing: " candidates))) (setq focus-current-thing (intern thing))))