-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
097f4c1
commit d9843aa
Showing
2 changed files
with
13 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
|
||
;; Maintainer: Anton Hakansson <[email protected]> | ||
;; URL: https://github.com/AntonHakansson/ | ||
;; Version: 0.3.1 | ||
;; Version: 0.3.2 | ||
;; Package-Requires: ((emacs "27.1") (org "9.4")) | ||
;; Keywords: processes, outlines | ||
|
||
|
@@ -66,6 +66,13 @@ | |
;; | ||
;; | ||
;;; NEWS: | ||
;; Version 0.3.2 | ||
;; - Support narrowed Org buffer. | ||
;; | ||
;; - Don't assume "/tmp/" is preferred temporary directory. | ||
;; | ||
;; - Fix commentary headings and docstrings. | ||
;; | ||
;; Version 0.3.0 (lots of breaking changes) | ||
;; - Dropped dependency on envrc package. Instead we get the shell environment from | ||
;; nix-shell using direnv's dump command. No more out-of-tree directory with .envrc. | ||
|
@@ -74,7 +81,6 @@ | |
;; - Removed `org-nix-shell-get-direnv-path', `org-nix-shell-envrc-format' and | ||
;; `org-nix-shell-src-block-name'. Instead we tangle nix shells to \"/tmp/\" | ||
;; | ||
;; | ||
;; Version 0.2.0 (lots of breaking changes) | ||
;; - Source blocks must explicitly set ':nix-shell <named-src-block>' header argument to | ||
;; load a nix-shell. To use a nix-shell in a specific scope you can use a header-args property like: | ||
|
@@ -245,7 +251,7 @@ ARGS is as for ORIG." | |
(apply func args))) | ||
|
||
(defun org-nix-shell--execute-src-block (orig-fun &optional arg info params executor-type) | ||
"Execute src block with nix shell environment | ||
"Execute src block with nix shell environment. | ||
Intended to be used as a advice around `org-babel-execute-src-block'. | ||
ORIG-FUN, ARG, INFO, PARAMS, EXECUTOR-TYPE are the same as for | ||
`org-babel-execute-src-block'" | ||
|