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 14:11:04 +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]:56676) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eAyE8-00063h-99 for emacs-orgmode@gnu.org; Sat, 04 Nov 2017 09:11:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eAyE7-0001in-GX for emacs-orgmode@gnu.org; Sat, 04 Nov 2017 09:11:08 -0400 Received: from mail-wr0-x22e.google.com ([2a00:1450:400c:c0c::22e]:44200) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eAyE7-0001iN-9W for emacs-orgmode@gnu.org; Sat, 04 Nov 2017 09:11:07 -0400 Received: by mail-wr0-x22e.google.com with SMTP id z55so4708623wrz.1 for ; Sat, 04 Nov 2017 06:11:06 -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. 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 for this?