From 2804f115d0c35df1aa52993feb733abb81e96fa2 Mon Sep 17 00:00:00 2001 From: vindarel Date: Fri, 9 Dec 2022 20:02:41 +0100 Subject: [PATCH] move nicknames to ciel-user, add one for os/filesystem --- docs/libraries.md | 41 ++++++++++++++++++++++++++++++++++++++--- docs/scripting.md | 2 +- src/packages.lisp | 21 +++++++++++---------- 3 files changed, 50 insertions(+), 14 deletions(-) diff --git a/docs/libraries.md b/docs/libraries.md index cbefa4e..635e475 100644 --- a/docs/libraries.md +++ b/docs/libraries.md @@ -380,9 +380,45 @@ And for a tutorial, see ) - (:local-nicknames (:/os :uiop/os) - ;; let's try this nickname. - ;; Simply :os doesn't help at auto-discovery with SLIME's autocompletion. - ;; but let's add it anyways for correctness. - (:os :uiop/os) - (:alex :alexandria) - (:csv :cl-csv) - (:http :dexador))) + #:-->)) (uiop:define-package ciel-user (:use :cl :ciel) - (:local-nicknames (:csv :cl-csv) + (:local-nicknames (:/os :uiop/os) ; let's try this nickname. + ;; Simply :os doesn't help at auto-discovery with SLIME's autocompletion. + ;; But let's add it anyways for correctness, + ;; it's handy for the shell and scripts. + (:os :uiop/os) + ;; This other uiop module is always useful: + (:filesystem :uiop/filesystem) + + (:alex :alexandria) + (:csv :cl-csv) (:http :dexador) (:json :shasht)))