/*{{{  #includes*/
#include <stdio.h>

#include <local/bool.h>

#define MISC_C

#include "keybind.h"
/*}}}  */

/*{{{  list all keywords/operations*/
public void sc_list_keys(void)
{
  /*{{{  all operations known in origami*/
  { KEYNAME *key=bindings;
    while (key->name) printf("%s\n",(key++)->name);
  }
  /*}}}  */
  /*{{{  all keywords known from keybind*/
  { keywords *key=keytab;
    while (key->value != ERROR) printf("%s\n",(key++)->name);
  }
  /*}}}  */
}
/*}}}  */
