mirror of
https://github.com/larstvei/Try.git
synced 2024-11-26 03:28:31 +00:00
Updated README.
This commit is contained in:
parent
32345488ae
commit
3a369b1f83
19
README.md
19
README.md
@ -1,11 +1,12 @@
|
|||||||
#Try
|
# Try
|
||||||
|
|
||||||
This is a package that allow you to try out other Emacs packages, without
|
Try is a packages that allow you to try out Emacs packages without
|
||||||
installing them. If you install a package (using `package-install`) you have
|
installing them. If you pass a URL to a plain-text `.el`-file it evaluates
|
||||||
to remember to delete this, if you realize you don't need that package. A
|
the content, without storing the file.
|
||||||
common way around this is to copy the code into the `*scratch*`-buffer and
|
|
||||||
evaluate the buffer. This extension essentially automates this process, by
|
|
||||||
excepting a URL to a plain-text `.el`-file, downloading the content and
|
|
||||||
evaluate it.
|
|
||||||
|
|
||||||
Unfortunately, you won't be able to try Try with `M-x try`.
|
Remember to make packages from your `package-archives` available for
|
||||||
|
download with `M-x package-refresh-contents`.
|
||||||
|
|
||||||
|
Packages from ELPA will temporarily be stored in `/tmp/` by default.
|
||||||
|
|
||||||
|
Unfortunately, you won't be able to try Try with `M-x try RET try`.
|
||||||
|
5
try.el
5
try.el
@ -1,5 +1,4 @@
|
|||||||
;;; -*- lexical-binding: t -*-
|
;;; try.el --- Try out Emacs packages. -*- lexical-binding: t -*-
|
||||||
;;; try.el --- Try out Emacs packages.
|
|
||||||
|
|
||||||
;; Copyright (C) 2014 Lars Tveito.
|
;; Copyright (C) 2014 Lars Tveito.
|
||||||
|
|
||||||
@ -18,7 +17,7 @@
|
|||||||
;; details.
|
;; details.
|
||||||
;;
|
;;
|
||||||
;; You should have received a copy of the GNU General Public License along
|
;; You should have received a copy of the GNU General Public License along
|
||||||
;; with Try. If not, see <http://www.gnu.org/licenses/>.
|
;; with Try. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
(require 'package)
|
(require 'package)
|
||||||
(require 'url)
|
(require 'url)
|
||||||
|
Loading…
Reference in New Issue
Block a user