Identi.ca is a free software microblogging service, similar to Twitter, based on the Status.net code base. I recently needed to update my status from Emacs, since its faster for me and easier. I’ve been using an an Emacs mode to update my Twitter account, but there was nothing to use for my Identi.ca account. And seeing there’s a Vim plugin, I thought someone, like me, needed an Emacs mode too.
So I forked the original twittering-mode to use it with the Identi.ca platform, using its Twitter compatible api.
System Requirements
- GNU Emacs 22 or later
- Linux, Mac OS X, BSD or any Unix based OS (requires wget)
Download
Download the latest stable release of Emacs Identica-mode
Or get the latest development code from the Git repository at
http://git.savannah.gnu.org/cgit/identica-mode.git
Installation
Copy the identica-mode.el file to your Emacs elisp files directory (.emacs.d/ in Ubuntu)
Then add the following to your .emacs (or your preferred customizations file)
;;; Identi.ca mode (require 'identica-mode) (setq identica-username "yourusername")
If you want to authenticate using simple authentication, create a file ~/.authinfo with the following contents:
machine servername login yourusername password yourpassword
Replace servername with your server (if connecting to Identica service, use identi.ca as server name), yourusername and yourpassword with your information.
You can also authenticate using OAuth, specially if you log in with an OpenID account which has no password. To use OAuth authentication (requires using oauth.el), add the following to your .emacs file:
(setq identica-auth-mode "oauth")
If you want to post from the minibufer without having identica buffer active, add the following global keybinding. Add this to send status updates
(global-set-key "\C-cip" 'identica-update-status-interactive)
Add this to send direct messages
(global-set-key "\C-cid" 'identica-direct-message-interactive)
Use
To start identica mode type:
M-x identica-mode
the buffer ‘*identica*’ will appear and you can see your friends timeline.
Press the “i” key to toggle icon mode to see user pictures.
To view your replies timeline
C-c C-r
To view the public timeline
C-c C-a
To view your friends timeline (the default timeline)
C-c C-f
To view a user’s timeline
C-c C-u
To view a group’s timeline
C-c C-g
To view a tag’s timeline
C-c C-t
To refresh the buffer’s timeline press “g”.
To post an update of your status, press
C-c C-s
type your message in the minibuffer, and hit Enter. You will see ‘Success: Post’ in minibuffer.
To send a direct message to a user, press
C-c C-d
On the minibuffer, you will be prompted for the username, then for the message.
To repeat (re-dent) a message, press
C-c RET
while the cursor is on the message’s line.
To favor a message, press the “F” key (shift f) while the cursor is on the message’s line.
Additionally, you while typing your message you can press <F4> key while the cursor is over a URL to shorten it using any of the following URL shortening services: Ur1.ca, TightURL, Goo.gl, TinyURL, To.ly and Is.gd. To expand an short url in your timeline, position your cursor over the short url and press ‘e’ key, it will be replaced with the expanded version in a few seconds.
Hope it can be of use for anyone using Emacs for almost everything, like I try to do, and would like to hear some feedback.
Contribute
If you have any ideas for features, patches or bug fixes, please add them to the identica-mode bug tracking list.
You can also help out if you’ve liked Emacs identica-mode and have some spare change. It would be great to support this project by making any kind of donation on the “tip jar” in appreciation of the hours invested on its development and improvement.
49 replies on “Identi.ca mode for Emacs”
Note that identi.ca also supports interaction through XMPP, so you can use emacs-jabber.
The great thing about laconica and the fact that it’s opensource is that you can re-create identica on your own servers (internal or external).
Do you think you could modify your plugin so as to be able to configure the server it connects to as well ?
Arthur,
Good idea, I’ll work on it and let you know.
Not bad. Got this working relatively easily. However, I ran into the following problem. I keep getting this in my *Messages*
error in process sentinel: xml-parse-tag: XML: (Well-Formed) Couldn’t parse tag: tatus_id
1
error in process sentinel: XML: (Well-Formed) Couldn’t parse tag: tatus_id
1
Any ideas? Any place to post/talk about this?
I’ve been getting that same error too. I talked with some laconi.ca devels and they have no clue what’s wrong on the XML feed. I think its something on my code, but I haven’t been able to trace it.
I’ll try to get it fixed as soon as possible.
[…] soll auch Leute geben, die nennen das Microblogging [↩] für Emacs existiert Identica-Mode […]
Arthur,
I’ve updated identica-mode with your suggestion. Now you can set the laconica server you want to connect to using:
setq laconica-server "myserver.com"
[…] updated identica-mode for Emacs and now has a way to connect to any laconica server, instead of just […]
Just tried identica-mode and am getting the following error:
error in process sentinel: xml-parse-tag: XML: (Well-Formed) Couldn’t parse tag: eated_at
This seems similar to the error reported in comment 5.
Any ideas?
Yeah, I’m getting something similar…
error in process sentinel: xml-parse-tag: XML: (Well-Formed) Couldn't parse tag: ="array"
0
error in process sentinel: XML: (Well-Formed) Couldn't parse tag: ="array"
0
JosefA
The xml bug has been finally fixed.
Modo identi.ca en Emacs…
Identi.ca es un servicio de microblogging, del cual les comentaba hace poco algunas actualizaciones. Es como Twitter, pero a mi parecer bastante más útil. Muchos programadores de software libre están aprovechando la plataforma (su diferencia con Tw…
Hey Gabriel
I posted about identica-mode on my blog, and a user asked how he could use it with OpenId. You can check the comment here:
http://picandocodigo.net/2009/03/modo-identica-en-emacs/comment-page-1/#comment-8413
Maybe you could include it as a feature on a future release?
Regards!
Fernando
Fernando,
Thanks for the tip, I’ll check that out and see what I can do.
I use this mode a lot, thanks for making it! So, I also have some
suggestions for improvement…
1. I have these lines in my identica-mode-hook:
(define-key identica-mode-map “g” ‘identica-friends-timeline)
(define-key identica-mode-map (kbd “”) ‘identica-click)
(define-key identica-mode-map “r” ‘identica-enter)
since “g” is the key to update org-agenda, dired buffers, buffer
list, etc; and I keep clicking whenever I want to visit a
link (never put functionality _only_ in the rodent); and “r” just
seemed like a nice reply button (perhaps “R” could reply to all @’s
mentioned in the dent?). Don’t know if they should be in the .el
file, but they feel better for me at least.
2. It’d also be cool to have some “go to next/previous clickable”
functions (like Info-next/previous-reference, or
w3m-next/previous-anchor).
3. I like the “n/p” functions for next-status-of-person-at-point,
however it seems to require that point is at the username, one
should be able to do this from anywhere in the status… (Also, it
rather confusingly says “Start/End of @foo’s status.” where it perhaps
should say “This is @foo’s last/first available status update.”)
[…] authentication, so that OpenID users can access the API. That means that OpenID users can now use Emacs identica-mode to post and access their dents. There was a lot of talking about Free Network Services and hope […]
Gabriel, thanks for fixing that XML bug! I got one more for you.
I run emacs in screen, so tat’s “emacs -nw”. identica-mode works fine except for one thing: it seems when it refreshes, it scrolls to the bottom of the buffer. I am not seeing this in regular windowed emacs.
Thanks it works like a Charm on Floss.pro 🙂
[…] Yes, I like using Emacs. I like it a lot. For most of a lot of what you want to do, there’s probably an Emacs mode for that. Which includes posting to identi.ca — identica-mode. […]
[…] Well great news Emacs Lovers you can update Floss.pro using Emacs+Identica mode for Emacs […]
[…] Inscription à identi.ca et utilisation avec le mode http://blog.gabrielsaldana.org/identica-mode-for-emacs/ […]
[…] http://blog.gabrielsaldana.org/identica-mode-for-emacs/ […]
[…] Der neue identi.ca-Mode im !emacs ist nochmal eine wesentliche Verbesserung. http://blog.gabrielsaldana.org/identica-mode-for-emacs/ […]
[…] @winstown http://blog.gabrielsaldana.org/identica-mode-for-emacs/ […]
[…] @winstonw http://blog.gabrielsaldana.org/identica-mode-for-emacs/ […]
[…] wishing or whining about ways to post or update my microblogging acount, I decided to create the Emacs identica-mode, a way to view timelines and update from Emacs, my favorite application. Identica-mode has had good […]
[…] http://blog.gabrielsaldana.org/identica-mode-for-emacs/ […]
[…] @perusio use M-x identica-mode-start after installing identica mode addon, http://blog.gabrielsaldana.org/identica-mode-for-emacs/ […]
[…] that I upgrade to the new version, work even keyboard shortcuts. Thank to Gabriel […]
[…] J’ai découvert hier un mode pour emacs incontournable : identica-mode! […]
Review in french for identica-mode :
http://www.julienpecqueur.com/wordpress/2009/12/identica-mode-for-emacs/
Good job 🙂
Hi,
identica-mode looks very nice! Thank you for writing it!
One thing I’d like to see is easy changing of the way the messages are displayed. The default style in my emacs looks a bit dull compared to (for example) the colorization of texinfo code. Also I’d like to remove the background color for replies (it makes the dents hard to read for me).
Is it already possible to do that easily?
Best wishes
[…] Cominciamo con il fare riferimento ad un altro blog: http://blog.gabrielsaldana.org/identica-mode-for-emacs/ […]
[…] http://blog.gabrielsaldana.org/identica-mode-for-emacs/ Posted in: Zona Linux ← Presentaciones con la clase {Beamer} de LaTeX Be the first to start a conversation […]
[…] we never met in person, he was a good friend. We mostly talked about Emacs Identica-mode, where he made several contributions. Actually, his patches to use url.el were key to releasing the […]
[…] mas información sobre comandos para identica-mode, revisar el blog de Daniel Saldaña, creador del […]
[…] http://blog.gabrielsaldana.org/identica-mode-for-emacs/ […]
[…] that I can also safely ignore for a while when busy. Real programmers use emacs for this and there Gabriel’s identica-mode comes in handy. With it we instantly have regexp search, tab-completion, and all the other well […]
[…] http://blog.gabrielsaldana.org/identica-mode-for-emacs/ […]
[…] di tutto dovete andare sul sito dello sviluppatore del mode di identica per Emacs e scaricare il […]
[…] mas información sobre comandos para identica-mode, revisar el blog de Daniel Saldaña, creador del […]
[…] и паролей) к различным ÑервиÑам. К примеру Ñ Ð¸Ñпользую emacs identi.ca-mode client, который получает учётную информацию через […]
[…] blog.gabrielsaldana.org/identica-mode-for-emacs to know more about […]
I keep getting the error “error in process filter: Symbol’s function definition is void: aget” with Aquamacs on Mac OSX.
It works with the newest version from the git repository.
Nice post. It’s really very useful for all internet lover. Thank you so much..steel plate
Thanks, but I think its
better
to change api to https, my country blocked identi.ca and for unknown reason with tor , i get access_token=nil , so I just switch to https via settings and every thing is ok now.Hello,
I try to load this mode.
Now, when I start Emacs, i have this error message :
error: required feature `identica-mode.el’ was not provided
I work on Archlinux.
Thx
I solved the problem.
But now, i have another :
I create de .authinfo file, but it seems like it doesn’t use/read it, because it ask me identi.ca logins.
Can someone help me ?