Added cheatsheet to readme
authoradithyasunil26 <adithyasunil26@gmail.com>
Sat, 30 Jan 2021 11:50:31 +0000 (15:50 +0400)
committerAJ ONeal <aj@therootcompany.com>
Wed, 3 Mar 2021 06:17:26 +0000 (06:17 +0000)
LF/README.md
LF/install.ps1
LF/install.sh
LF/releases.js

index 03f866b2f893ef61bd0f2dd248fdaeaa4d31125c..7bd32e12aecfc15ccd22e863dd67523679c7ae81 100644 (file)
@@ -1,35 +1,41 @@
 ---
-title: Foo Bar
-homepage: https://github.com/webinstall/foobar
+title: lf
+homepage: https://github.com/gokcehan/lf
 tagline: |
-  foobar: An example that doesn't exist.
+  lf: terminal file manager written in Go
 ---
 
-<!--
-    Note: Delete this comment section.
-
-    Need an example that has an **alias**? See `bat`.
-    Need a Windows example using **msvc**? See `bat`.
--->
-
-To update or switch versions, run `webi example@stable` (or `@v2`, `@beta`,
+To update or switch versions, run `webi lf@stable` (or `@v2`, `@beta`,
 etc).
 
 ## Cheat Sheet
 
-> `foo` doesn't exist and this text should have been replaced. It doesn't do
-> anything, but what it does is useful because it is; everybody knows it.
-
-To run foo:
+> lf (as in "list files") is a terminal file manager written in Go. It is heavily inspired by ranger with some missing and extra features.
 
+To start the application in the current directory:
 ```bash
-foo
+lf
+```
+### Navigating in lf:
+| Action    | Command/Key |
+|-----------|-------------|
+| quit      | 'q'                |
+| up        | 'k' or '\<up>'     |
+| page-up   | '\<pgup>'          |
+| down      | 'j' or '\<down>'   |
+| page-down | '\<pgdn>'          |
+| updir     | 'h' or '\<left>'   |
+| open      | 'l' or '\<right>'  |
+| top       | 'gg' and '\<home>' |
+| bottom    | 'G' and '\<end>'   |
+|||
+
+### For command line options:
+```bash
+lf -help
 ```
 
-### Add Baz Highlighting
-
-To run foo with both bar and baz highlighting turned on:
-
+### For documentation
 ```bash
-foo --bar=baz
+lf -doc
 ```
index e3305c51a508a5ef224a3f39cec201f2dd4ef7aa..51f4830dfdd6abcfc1cdde5acefe57d10f40c21c 100644 (file)
@@ -4,7 +4,6 @@
 # Install lf #
 ##################
 
-# Every package should define these variables
 $pkg_cmd_name = "lf"
 
 $pkg_dst_cmd = "$Env:USERPROFILE\.local\bin\lf.exe"
@@ -17,10 +16,8 @@ $pkg_src = "$pkg_src_cmd"
 
 $pkg_download = "$Env:USERPROFILE\Downloads\$Env:WEBI_PKG_FILE"
 
-# Fetch archive
 IF (!(Test-Path -Path "$Env:USERPROFILE\Downloads\$Env:WEBI_PKG_FILE"))
 {
-    # TODO: arch detection
     echo "Downloading lf from $Env:WEBI_PKG_URL to $pkg_download"
     & curl.exe -A "$Env:WEBI_UA" -fsSL "$Env:WEBI_PKG_URL" -o "$pkg_download.part"
     & move "$pkg_download.part" "$pkg_download"
@@ -30,29 +27,18 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
 {
     echo "Installing lf"
 
-    # TODO: create package-specific temp directory
-    # Enter tmp
     pushd .local\tmp
 
-        # Remove any leftover tmp cruft
         Remove-Item -Path ".\lf-v*" -Recurse -ErrorAction Ignore
         Remove-Item -Path ".\lf.exe" -Recurse -ErrorAction Ignore
 
-        # NOTE: DELETE THIS COMMENT IF NOT USED
-        # Move single binary into root of temporary folder
-        #& move "$pkg_download" "lf.exe"
-
-        # Unpack archive file into this temporary directory
-        # Windows BSD-tar handles zip. Imagine that.
         echo "Unpacking $pkg_download"
         & tar xf "$pkg_download"
 
-        # Settle unpacked archive into place
         echo "Install Location: $pkg_src_cmd"
         New-Item "$pkg_src_bin" -ItemType Directory -Force
         Move-Item -Path ".\lf-*\lf.exe" -Destination "$pkg_src_bin"
 
-    # Exit tmp
     popd
 }
 
index 9fb5696d5acaf68d3471d87b4af0f8838ae3123e..674bbcb7711553659c7ffd596d294854a9369c44 100644 (file)
@@ -7,8 +7,7 @@ function __init_lf() {
     ##################
     # Install lf #
     ##################
-
-    # Every package should define these 6 variables
+    
     pkg_cmd_name="lf"
 
     pkg_dst_cmd="$HOME/.local/bin/lf"
@@ -18,21 +17,12 @@ function __init_lf() {
     pkg_src_dir="$HOME/.local/opt/lf-v$WEBI_VERSION"
     pkg_src="$pkg_src_cmd"
 
-    # pkg_install must be defined by every package
     pkg_install() {
-        # ~/.local/opt/lf-v0.99.9/bin
         mkdir -p "$(dirname $pkg_src_cmd)"
-
-        # mv ./lf-*/lf ~/.local/opt/lf-v0.99.9/bin/lf
         mv ./lf-*/lf "$pkg_src_cmd"
     }
 
-    # pkg_get_current_version is recommended, but (soon) not required
     pkg_get_current_version() {
-        # 'lf --version' has output in this format:
-        #       lf 0.99.9 (rev abcdef0123)
-        # This trims it down to just the version number:
-        #       0.99.9
         echo $(lf --version 2>/dev/null | head -n 1 | cut -d ' ' -f 2)
     }
 
index 0e71a6bbed1229d26997c39fbbe041c703c3035a..a960a34aff6f42c62267e38a09755dd899a347f1 100644 (file)
@@ -13,7 +13,6 @@ module.exports = function (request) {
 if (module === require.main) {
   module.exports(require('@root/request')).then(function (all) {
     all = require('../_webi/normalize.js')(all);
-    // just select the first 5 for demonstration
     all.releases = all.releases.slice(0, 5);
     console.info(JSON.stringify(all, null, 2));
   });