help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: How to get a list of all commands with given prefix?


From: Jambunathan K
Subject: Re: How to get a list of all commands with given prefix?
Date: Tue, 18 Mar 2014 23:33:02 +0530
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux)

Thorsten Jolitz <tjolitz@gmail.com> writes:

> Hi List, 
>
> I wonder how I can easily get a list of all interactive commands with a
> given prefix 'foo-' in a program (non-interactively)?


Use this as a starter.

    (require 'cl)
    (remove-if-not 'commandp obarray)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]