https://github.com/mogenslund/dired
Dired for Liquid
https://github.com/mogenslund/dired
Last synced: 5 months ago
JSON representation
Dired for Liquid
- Host: GitHub
- URL: https://github.com/mogenslund/dired
- Owner: mogenslund
- License: mit
- Created: 2018-10-20T18:38:40.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-06-26T19:29:47.000Z (over 6 years ago)
- Last Synced: 2025-01-19T13:31:28.235Z (12 months ago)
- Language: Clojure
- Size: 6.84 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dired for Liquid
Liquid extension for navigating and manipulating files in Liquid.
The extension is usable, but feature are few so far.
## To install
The [liquid-starter-kit](https://github.com/mogenslund/liquid-starter-kit) can be used as example and in general as a way to setup Liquid locally.
In the deps.edn include this project in the deps section, like
{:deps mogenslund/dired {:git/url "https://github.com/mogenslund/dired.git"
:tag "v0.1.0"}}
(Maybe with an updated tag, to get the newest version)
In your project require `[dk.salza.dired :as dired]` and assign a keyboad shortcut like this:
(editor/set-global-key "f6" #(dired/run (editor/get-folder)))
or add dired to `C-space` typeahead using this:
(editor/add-interactive "dired" #(dired/run (editor/get-folder)))