This commit is contained in:
Sameer Rahmani 2010-12-27 15:51:12 +03:30
parent 4ca5b5c08f
commit c2e1f406e0
2 changed files with 48 additions and 0 deletions

31
src/lib/io.el Normal file
View File

@ -0,0 +1,31 @@
;; Shit - My personal emacs IDE configuration
;; Copyright (C) 2010 Sameer Rahmani <lxsameer@gnu.org>
;;
;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;; IO library
(defun io/read (FILE)
"Read the contents of a file into a buffer and return the content.
already opend buffer died after reading content."
(if (file-readable-p FILE)
(let (x data)
(setq x (find-file FILE))
(setq data (buffer-string))
(kill-buffer x)
(identity data)
)
)
)

17
src/lib/template.el Normal file
View File

@ -0,0 +1,17 @@
;; Shit - My personal emacs IDE configuration
;; Copyright (C) 2010 Sameer Rahmani <lxsameer@gnu.org>
;;
;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;; Template library