From d45f64714d4a8fb113e340828d262cda6ee78823 Mon Sep 17 00:00:00 2001 From: Tore Norderud Date: Fri, 26 Feb 2016 16:01:02 +0100 Subject: [PATCH 1/2] Minor changes in README.md --- README.md | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 4d71d45..635b837 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # Try -Try is a packages that allow you to try out Emacs packages without -installing them. If you pass a URL to a plain-text `.el`-file it evaluates -the content, without storing the file. +Try is a package that allows you to try out Emacs packages without installing +them. If you pass a URL to a plain text `.el`-file it evaluates the content, +without storing the file. Packages from ELPA will temporarily be stored in `/tmp/` by default. @@ -27,17 +27,16 @@ Or if you want to try out some package from the web, just paste in the URL ### Example -If you for instance have [melpa](http://melpa.org/) in your -`package-archives` you can try -[multiple cursors](https://github.com/magnars/multiple-cursors.el) by -running: +If you for instance have [melpa](http://melpa.org/) in your `package-archives` +you can try [multiple cursors](https://github.com/magnars/multiple-cursors.el) +by running: M-x try RET multiple-cursors RET If you on the other hand want to test out a single `.el`-file from somewhere you can simply insert an URL. Trying out -[Leuven-theme](https://github.com/fniessen/emacs-leuven-theme) can be done -by running: +[Leuven-theme](https://github.com/fniessen/emacs-leuven-theme) can be done by +running: M-x try RET https://raw.githubusercontent.com/fniessen/emacs-leuven-theme/master/leuven-theme.el RET From 7452a077f4d5989fff748515e137e1429eadbd8d Mon Sep 17 00:00:00 2001 From: Tore Norderud Date: Fri, 26 Feb 2016 16:01:54 +0100 Subject: [PATCH 2/2] Redirect package commentary to Github --- try.el | 45 +++------------------------------------------ 1 file changed, 3 insertions(+), 42 deletions(-) diff --git a/try.el b/try.el index d840c06..59ad59d 100644 --- a/try.el +++ b/try.el @@ -26,50 +26,11 @@ ;;; Commentary: -;; # Try - -;; Try is a packages that allow you to try out Emacs packages without -;; installing them. If you pass a URL to a plain-text `.el`-file it evaluates +;; Try is a package that allows you to try out Emacs packages without +;; installing them. If you pass a URL to a plain text `.el`-file it evaluates ;; the content, without storing the file. -;; Packages from ELPA will temporarily be stored in `/tmp/` by default. - -;; ## Installation - -;; You can install Try using elpa. - -;; It's available on [marmalade](http://marmalade-repo.org/) and -;; [melpa](http://melpa.milkbox.net/): - -;; M-x package-install try - -;; ## Usage - -;; To try out a package you can run - -;; M-x try RET some-package - -;; Or if you want to try out some package from the web, just paste in the URL - -;; M-x try RET https://url.com/to/some/file.el - -;; ### Example - -;; If you for instance have [melpa](http://melpa.org/) in your -;; `package-archives` you can try -;; [multiple cursors](https://github.com/magnars/multiple-cursors.el) by -;; running: - -;; M-x try RET multiple-cursors RET - -;; If you on the other hand want to test out a single `.el`-file from somewhere -;; you can simply insert an URL. Trying out -;; [Leuven-theme](https://github.com/fniessen/emacs-leuven-theme) can be done -;; by running: - -;; M-x try RET https://raw.githubusercontent.com/fniessen/emacs-leuven-theme/master/leuven-theme.el RET - -;; Unfortunately, you won't be able to try Try with `M-x try RET try`. +;; For more info see https://github.com/larstvei/Try ;;; Code: (require 'package)