diff options
| author | Jameson Rollins <jrollins@finestructure.net> | 2010-09-12 14:36:53 -0400 |
|---|---|---|
| committer | Jameson Rollins <jrollins@finestructure.net> | 2010-09-12 14:36:53 -0400 |
| commit | 3702578bafae1a97049a3eeeda83a675c0ce3ae0 (patch) | |
| tree | c1fd7d5ef6c705c998bd00cd22109f08293fbb34 | |
| parent | fb8d434089150c6ffa5a71373552e386ef89c151 (diff) | |
another attempt to fix emacstips formating
| -rw-r--r-- | emacstips.mdwn | 37 |
1 files changed, 17 insertions, 20 deletions
diff --git a/emacstips.mdwn b/emacstips.mdwn index c9b95b8..b1e7dbb 100644 --- a/emacstips.mdwn +++ b/emacstips.mdwn @@ -212,35 +212,32 @@ works by dragging from the file manager without any modifications. There are currently two solutions to this: - * [bbdb](http://bbdb.sourceforge.net) is a contact database for - emacs that works quite nicely together with message mode, - including address autocompletion. + [bbdb](http://bbdb.sourceforge.net) is a contact database for emacs + that works quite nicely together with message mode, including + address autocompletion. - * You can also use the notmuch database as a mail address book - itself. To do this you need a command line tool that outputs - likely address candidates based on a search string. There are currently two available: + You can also use the notmuch database as a mail address book itself. + To do this you need a command line tool that outputs likely address + candidates based on a search string. There are currently two + available: - * The python tool notmuch_address.py ('git clone + * The python tool notmuch\_address.py ('git clone http://jkr.acm.jhu.edu/git/notmuch_addresses.git`) (slower, but no compilation required so good for testing the setup) * The vala-based [addrlookup](http://github.com/spaetz/vala-notmuch) (faster, but - needs compiling). This is how you compile the (3rd party) tool - "addrlookup" to give you address completion: + needs compiling). The addrlookup binary needs to be compiled. + Grab + http://github.com/spaetz/vala-notmuch/raw/static-sources/src/addrlookup.c + and build it with: - * you need the addrlookup binary, first of all. Grab - http://github.com/spaetz/vala-notmuch/raw/static-sources/src/addrlookup.c - and build it with `cc -o addrlookup addrlookup.c ``pkg-config - --cflags --libs gobject-2.0`` -lnotmuch`. That should give you - the binary that you can test already. + cc -o addrlookup addrlookup.c `pkg-config --cflags --libs gobject-2.0` -lnotmuch - * EUDC is integrated into emacs and can be used for tab - completion of email addresses. The code I use is here - http://gist.github.com/359425. It was announce in [this - mail](http://mid.gmane.org/87fx3uflkx.fsf@jhu.edu) - (id:87fx3uflkx.fsf@jhu.edu) which contains links to the git - repositories which contain the files. + EUDC is integrated into emacs and is needed for tab completion of + email addresses. See [this + mail](http://mid.gmane.org/87fx3uflkx.fsf@jhu.edu) + (id:87fx3uflkx.fsf@jhu.edu) for more information. * <span id="sign_messages_gpg">**how to sign/encrypt my messages with gpg**</span> |
