diff options
author | Arun Isaac <arunisaac@systemreboot.net> | 2017-05-06 03:05:11 +0530 |
---|---|---|
committer | Arun Isaac <arunisaac@systemreboot.net> | 2017-05-06 10:07:19 +0530 |
commit | 860f73c699a5a22036b67b63a5a2a3e0901a354f (patch) | |
tree | e0af92e6661dda871ba493f0c6c978f0042d5550 | |
parent | 40d728a87d4b6993437ed33dbe2dcb47363ae7c0 (diff) | |
download | patches-860f73c699a5a22036b67b63a5a2a3e0901a354f.tar patches-860f73c699a5a22036b67b63a5a2a3e0901a354f.tar.gz |
gnu: Add emacs-transpose-frame.
* gnu/packages/emacs.scm (emacs-transpose-frame): New variable.
-rw-r--r-- | gnu/packages/emacs.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 9028ed0eda..fac04e2c9c 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -4561,3 +4561,22 @@ built on top of XELB.") (description "@code{emacs-gnuplot} is an emacs major mode for interacting with gnuplot.") (license license:gpl2+))) + +(define-public emacs-transpose-frame + (package + (name "emacs-transpose-frame") + (version "0.1.0") + (source + (origin + (method url-fetch) + (uri "http://www.emacswiki.org/emacs/download/transpose-frame.el") + (sha256 + (base32 + "1f67yksgw9s6j0033hmqzaxx2a93jm11sd5ys7cc3li5gfh680m4")))) + (build-system emacs-build-system) + (home-page "https://www.emacswiki.org/emacs/TransposeFrame") + (synopsis "Transpose window arrangement in current frame") + (description "@code{emacs-transpose-frame} provides some interactive +functions which allows users to transpose windows arrangement in currently +selected frame.") + (license license:bsd-2))) |