From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Somelauw ." Subject: Why is there no org-agenda-todo-next-keyword function? Date: Sat, 4 Nov 2017 22:49:56 +0100 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60019) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eB6KF-0002rf-A9 for emacs-orgmode@gnu.org; Sat, 04 Nov 2017 17:50:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eB6KE-0001ew-Nl for emacs-orgmode@gnu.org; Sat, 04 Nov 2017 17:49:59 -0400 Received: from mail-wm0-x230.google.com ([2a00:1450:400c:c09::230]:50163) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eB6KE-0001ee-HN for emacs-orgmode@gnu.org; Sat, 04 Nov 2017 17:49:58 -0400 Received: by mail-wm0-x230.google.com with SMTP id b189so7286219wmd.4 for ; Sat, 04 Nov 2017 14:49:58 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: emacs-orgmode@gnu.org In an org-agenda buffer the following functions are defined and bound: - org-agenda-todo-nextset (C-S-left) - org-agenda-todo-previousset (C-S-right) which change between sets of todo keywords. Yet the following corresponding functions are missing: - org-agenda-todo-next-keyword - org-agenda-todo-previous-keyword which should (if implemented) change between individual todo keywords. That means that If I have the following setup: ```emacs-lisp (setq org-todo-keywords '((sequence "TODO(t)" "|" "DONE(d)") (sequence "NEXT(n)" "|" "WAITING(w)"))) ``` There is no way to change a task to DONE using C-S-left and C-S-right bindings alone. What's the reason that these functions are missing?