Vim window logic, slimv
This commit is contained in:
parent
babcc9e44b
commit
515847d07e
791 changed files with 51552 additions and 86 deletions
|
|
@ -0,0 +1,17 @@
|
|||
(in-package :cl-user)
|
||||
(defpackage cl-project.io
|
||||
(:use #:cl
|
||||
#:cl-project.specials)
|
||||
(:import-from #:cl-emb
|
||||
#:execute-emb)
|
||||
(:export #:copy-file-to-file))
|
||||
(in-package :cl-project.io)
|
||||
|
||||
(defun copy-file-to-file (source-path target-path)
|
||||
"Copy a file `source-path` to the `target-path`."
|
||||
(format t "~&writing ~A~%" target-path)
|
||||
(ensure-directories-exist target-path)
|
||||
(with-open-file (stream target-path :direction :output :if-exists :supersede)
|
||||
(write-sequence
|
||||
(cl-emb:execute-emb source-path :env *skeleton-parameters*)
|
||||
stream)))
|
||||
Loading…
Add table
Add a link
Reference in a new issue