Variable: kimport:suffix-alist

kimport:suffix-alist is a variable defined in kimport.el.

Value

((".org" . kimport:star-outline) (".otl" . kimport:star-outline)
 (".aug" . kimport:aug-post-outline))

Documentation

Alist of (buffer-name-suffix . importation-function) elements.

This determines the type of importation done on a file when kimport:file is called. Each importation-function must take two arguments, a buffer/file to import and a buffer/file into which to insert the imported elements. A third optional argument, CHILDREN-FLAG, may be given; when non-nil, insert imported cells as the initial set of children of the current cell, if any.

   .org - import format is an Emacs outline whose entries begin with asterisks;
   .otl - import format is an Emacs outline whose entries begin with asterisks;
   .kot
   .kotl - import format is a Koutline;
   .aug - import format is an Augment post-numbered outline
           (see https://dougengelbart.org/content/view/148/).

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kimport.el
;;;###autoload
(defvar kimport:suffix-alist
  '((".org" . kimport:star-outline)
    (".otl" . kimport:star-outline)
    (".aug" . kimport:aug-post-outline))
  "Alist of (buffer-name-suffix . importation-function) elements.
This determines the type of importation done on a file when `kimport:file' is
called.  Each importation-function must take two arguments, a buffer/file to
import and a buffer/file into which to insert the imported elements.
A third optional argument, CHILDREN-FLAG, may be given; when non-nil, insert
imported cells as the initial set of children of the current cell, if any.

   .org  - import format is an Emacs outline whose entries begin with asterisks;
   .otl  - import format is an Emacs outline whose entries begin with asterisks;
   .kot
   .kotl - import format is a Koutline;
   .aug  - import format is an Augment post-numbered outline
           (see https://dougengelbart.org/content/view/148/).")