Go to file
Denis Zheleztsov aea7ff5b83
Fix some errors
2018-08-15 14:25:17 +03:00
.gitignore Initial commit 2017-09-28 10:28:55 +03:00
LICENSE Initial commit 2017-09-28 10:28:55 +03:00
README.org Add defaults echoes. Also posible fixes 2 2018-06-26 09:57:21 +03:00
idec-answers.el Message signature 2018-08-10 17:23:11 +03:00
idec-customize.el Working answer post 2017-10-17 14:09:25 +03:00
idec-db.el Repto support in local mail. Closes #5 2018-08-11 15:08:05 +03:00
idec-mode.el Fix some errors 2018-08-15 14:25:17 +03:00
idec-online.el Fixes #3 2018-06-26 12:13:23 +03:00
idec-parser.el Local echo beautiful view 2018-06-27 15:08:32 +03:00
idec.el Display unred messages count 2018-08-12 12:36:30 +03:00
todo.org todo update 2017-10-19 18:32:28 +03:00

README.org

idec.el

IDEC networks client for GNU Emacs.

Installation

Clone repository:

git clone https://github.com/Difrex/idec.el.git ~/.emacs.d/idecel

Requirements

Install reuired packages:

  1. dash
  2. emacsql
  3. emacsql-sqlite
  4. web
  5. f

Configuration

Write configuration into you init.el file

(defun load-idec
  "Configure IDEC."
  (add-to-list 'load-path "~/.emacs.d/idecel")
  (require 'idec-mode)
  (add-hook 'idec-mode-hook 'visual-line-mode))
(load-idec)

Or you can use use-package from MELPA.

(use-package idec-mode
        :load-path "~/projects/idecel"
        :bind (("C-c C-c" . kill-this-buffer)
               ("C-c C-n" . idec-next-message)
               ("C-c C-b" . idec-previous-message)
               ("C-C C-f" . idec-load-new-messages))
        :init
        :config
        (add-hook 'idec-mode-hook 'visual-line-mode))

Usage

Customize you settings first. Run M-x customize-group <RET> idec <RET>.

Interactive functions

  • idec-load-new-messages: Fetch new messages.

Online reading/writing

  • idec-online-browse: View node echoes online without fetching. Node must support /list.txt extension.
  • idec-online-browse-hidden: View hidden echo online without fetching.

Local mail reading/writing

  • idec-local-browse: View list of fetched echoes.
  • idec-browse-local-echo: View fetched echo.

Development status

In active development. UI is ugly :(.