Identica mode for Emacs update: support for any Laconica server

I’ve updated identica-mode for Emacs and now has a way to connect to any laconica server, instead of just identi.ca.

To configure add this to your .emacs file, or your customizations file or your choice: (setq laconica-server "myserver.com")

I’m working on publishing the git repository of the project. In the meantime you can download it here.

Related posts:

  1. Identica-mode 1.2 with OAuth support released
  2. Emacs identica-mode version 0.7
  3. Fixed error on xml parse in identica-mode
  4. Emacs identica-mode with replies highlighting
  5. Emacs identica-mode with multiple timelines and direct messages

About Gabriel Saldaña

Web developer and free software advocate.
This entry was posted in Emacs, GNU/Linux Free Software & Open Source and tagged , , . Bookmark the permalink.

One Response to Identica mode for Emacs update: support for any Laconica server

  1. p4bl0 says:

    Hi, you did a great job!

    I modified a bit identica-mode.el, instead of

    (defvar identica-username nil) (defvar identica-password nil)

    I put

    ;; from twitter.el: (defcustom identica-username nil “Username to use for connecting to identi.ca. If nil, you will be prompted.” :type ‘(choice (const :tag “Ask” nil) (string)) :group ‘identica)

    (defcustom identica-password nil “Password to use for connecting to identi.ca. If nil, you will be prompted.” :type ‘(choice (const :tag “Ask” nil) (string)) :group ‘identica)

    Like this you can avoid the need to write your password in your .emacs, which is something we all like to share :-) .

    Like i said in comment, this code come from the twitter.el package :-) ).

    Thanks you for this identi.ca mode !