📜 ⬆️ ⬇️

juick-el - juick client in Emacs

In a post about Twit.el , it was described how to make a twitter client from Emacs. In this post I would like to tell you how to screw the client for microblogging service - juick to GNU Emacs.

In order to extend the GNU Emacs juick client, consider juick-el. The official page of the project will be shown at the end of the post.

You can install the extension as follows: There are two ways 1) Download project files from the official site. 2) Create a local copy of the git repository on yourself:

$ git clone git: //github.com/mad/emacs-juick-el.git
')
After that we add the following to the .emacs file:

(add-to-list 'load-path "~/.emacs.d/plugins/juick-el/")
(require 'juick)
(setq juick-tmp-dir "~/.emacs.d/juick-avatars/")
(setq juick-tag-subscribed '("emacs" "linux" "juick" "GTD" "todo"))
(juick-auto-update t)


Consider what we added to the .emacs file:
1) Specify the path to the folder with the extension files
2) Specify the connection of our extension
3) Specify the folder in which the avatars will be stored
4) Specify the tags to which we subscribe.
5) Receipt of messages with specified tags.

In order to respond to a record or comment, just move the cursor to the message number and press RET. In order to subscribe to the user's messages, move the cursor to his name and press s to unsubscribe u.

ps project page - juick-el

Source: https://habr.com/ru/post/77798/


All Articles