1
0
mirror of https://github.com/skywind3000/z.lua synced 2026-03-14 11:49:48 +00:00

update doc

This commit is contained in:
skywind3000
2021-02-15 00:06:38 +08:00
parent 501f619f94
commit cfad8f54ce
2 changed files with 12 additions and 4 deletions

View File

@@ -137,8 +137,11 @@ z -b foo # cd to the parent directory starting with foo
- Windows WSL-1:
- Install `lua-filesystem` module.
- Initialize z.lua as in Linux.
Install `lua-filesystem` module before init z.lua:
sudo apt-get install lua-filesystem
This module is required due to a wsl-1 [defect](https://github.com/microsoft/WSL/issues/5505).

9
z.lua
View File

@@ -1,10 +1,10 @@
#! /usr/bin/env lua
--=====================================================================
--
-- z.lua - a cd command that learns, by skywind 2018, 2019, 2020
-- z.lua - a cd command that learns, by skywind 2018, 2019, 2020, 2021
-- Licensed under MIT license.
--
-- Version 1.8.12, Last Modified: 2020/12/31 02:05
-- Version 1.8.12, Last Modified: 2021/02/15 00:05
--
-- * 10x faster than fasd and autojump, 3x faster than z.sh
-- * available for posix shells: bash, zsh, sh, ash, dash, busybox
@@ -64,6 +64,10 @@
-- * Add cmder/vendor to %PATH%
-- * Ensure that "lua" can be called in %PATH%
--
-- Windows WSL-1:
-- * Install lua-filesystem module before init z.lua:
-- sudo apt-get install lua-filesystem
--
-- Configure (optional):
-- set $_ZL_CMD in .bashrc/.zshrc to change the command (default z).
-- set $_ZL_DATA in .bashrc/.zshrc to change the datafile (default ~/.zlua).
@@ -2744,4 +2748,5 @@ if not pcall(debug.getlocal, 4, 1) then
end
end
-- vim: set ts=4 sw=4 tw=0 noet :