From 3763c610974c184c8735bc66e501969c16ed10f9 Mon Sep 17 00:00:00 2001 From: Donald Ephraim Curtis Date: Wed, 25 Jan 2012 16:42:59 -0600 Subject: [PATCH] Use gists for code. --- html/index.erb | 16 +++++++++++++--- html/style.css | 3 +++ 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/html/index.erb b/html/index.erb index 824069cb..50314d9d 100644 --- a/html/index.erb +++ b/html/index.erb @@ -73,8 +73,7 @@ To add the repository put this before the call to `package-initialize` in your `init.el` file. - (add-to-list 'package-archives - '("melpa" . "http://melpa.milkbox.net/packages/") t) + Please read about [known issues](#known-issues) below before attempting to install multiple packages at once. @@ -85,11 +84,22 @@ Due to the way the HTTP routing works on my provider, the HTTP/1.1 connection will time out for long package installs -- where the package is large and takes a while to compile -- like *magit* or *evil*. - (setq url-http-attempt-keepalives nil) + This makes things a tad more slow but means that the install completes correctly. Otherwise the connection times out and the install goes haywire. +### Fixes for `package.el` + +There are a number of small bugs in Emacs24's `package.el`. First, +when installing dependencies, the packages were not getting +initialized. Second, the order for dependencies was coming out +backwards for what I needed. Both problems are + easily patched by some *advice*. + + + + ## Updating Packages `package.el` now includes a mechanism to upgrade packages. After running `package-list-pacages`, type *u* (mark Upgradable packages) and then *x* (eXecute the installs and deletions). When it's done installing all the packages it will ask if you want to delete the obsolete packages and so you can hit *y* (Yes). diff --git a/html/style.css b/html/style.css index 78e975fa..bd3d75b0 100644 --- a/html/style.css +++ b/html/style.css @@ -84,3 +84,6 @@ tr.odd { background-color: #ccc; } +.gist-syntax .p { + color: #000000; +}