This file contains hidden or 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
| (fn f [a b] | |
| (letfn [(clear-string [a] | |
| (cond (string? a) a | |
| (vector? a) (clojure.string/join (map str a)) | |
| :else (clojure.string/join | |
| (filter #(not (= % \:)) | |
| (clojure.string/join (map str a)))))) | |
| (make-ls-d [] | |
| (with-local-vars | |
| [ls-d (memoize |
This file contains hidden or 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
| @echo off | |
| %CLOJURE_CLR%\Clojure.Main.exe -i %CLOJURE_CLR%\init\init-clr.clj -r |
This file contains hidden or 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
| (in-ns 'user) | |
| ;; preload namespaces: | |
| ;; ------------------- | |
| ;; | |
| (require 'clojure.string) | |
| (use '[clojure.pprint :only [pprint]]) | |
This file contains hidden or 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
| ; | |
| repl basics: | |
| ------------ | |
| Exit: Control+C | |
| Docs: (doc function-name-here) | |
| (find-doc "part-of-name-here") | |
| Source: (source function-name-here) | |
This file contains hidden or 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
| %CLOJURE_CLR%;C:\emacs\bin |
This file contains hidden or 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
| # in Powershell, ls dereferences HOME Unix-like by $HOME and '~': | |
| > ls ~\.emacs* | |
| C:\Users\your-user-name\.emacs.d # Emacs-Live package directory | |
| C:\Users\your-user-name\.emacs-live.el # Emacs-Live user configuration file | |
| # in Cmd, ls dereferences HOME Windows-like only by %HOME%: | |
| > ls %HOME%\.emacs* | |
| C:\Users\your-user-name\.emacs.d # Emacs-Live package directory | |
| C:\Users\your-user-name\.emacs-live.el # Emacs-Live user configuration file |
This file contains hidden or 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
| ; in ~\.emacs-live.el, at the top: | |
| (require 'server) | |
| (server-start) |
This file contains hidden or 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
| Windows Registry Editor Version 5.00 | |
| [HKEY_CLASSES_ROOT\*\shell] | |
| [HKEY_CLASSES_ROOT\*\shell\removeproperties] | |
| "ProgrammaticAccessOnly"="Apartment" | |
| [HKEY_CLASSES_ROOT\*\shell\removeproperties\DropTarget] | |
| "CLSID"="{09a28848-0e97-4cef-b950-cea037161155}" |
This file contains hidden or 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
| Windows Registry Editor Version 5.00 | |
| [HKEY_CLASSES_ROOT\*\shell] | |
| [HKEY_CLASSES_ROOT\*\shell\removeproperties] | |
| "ProgrammaticAccessOnly"="Apartment" | |
| [HKEY_CLASSES_ROOT\*\shell\removeproperties\DropTarget] | |
| "CLSID"="{09a28848-0e97-4cef-b950-cea037161155}" |
This file contains hidden or 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
| C:\emacs\bin\emacsclientw.exe "" -na C:\emacs\bin\runemacs.exe |
OlderNewer