|
2 years ago | |
---|---|---|
.gitignore | 3 years ago | |
LICENSE | 3 years ago | |
README.org | 2 years ago | |
idec-answers.el | 2 years ago | |
idec-customize.el | 3 years ago | |
idec-db.el | 2 years ago | |
idec-mode.el | 2 years ago | |
idec-online.el | 2 years ago | |
idec-parser.el | 2 years ago | |
idec.el | 2 years ago | |
todo.org | 3 years ago |
IDEC networks client for GNU Emacs.
Clone repository:
git clone https://github.com/Difrex/idec.el.git ~/.emacs.d/idecel
Install reuired packages:
dash
emacsql
emacsql-sqlite
web
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))
Customize you settings first. Run M-x customize-group <RET> idec <RET>
.
idec-load-new-messages: Fetch new messages.
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.
idec-local-browse: View list of fetched echoes.
idec-browse-local-echo: View fetched echo.
In active development. UI is ugly :(.