CatsDeservePets
CatsDeservePets
Ok, It mostly works now. I removed the `infoscript` option in favor of the command `addcustominfo`. I decided on making it take an argument in the format of `$LS_COLORS` which...
> I prefer to keep the original syntax of `addcustominfo` (i.e. `addcustominfo `) to maintain consistency with other commands. Since you are still building the command string in a while...
@horriblename You can find a simple example inside the [docs](https://github.com/gokcehan/lf/blob/master/doc.md#loading-directory). Keep in mind this currently only works when compiling `lf` yourself from master as the features required to make this...
Hello, @mibli. As someone who is not that deep into unix shell scripting, it is nice to see people coming up with more efficient solutions. Faster is always better! Those...
> Having transparent compression in a file manager is not that useful considering that filesystems like btrfs already do that. But it is certainly confusing for a user. The way...
Hello @dumblob, the [tips](https://github.com/gokcehan/lf/wiki/Tips) section mentions this specifically. > Because of the nature of `lf -remote`, in many of the examples below `sed` is used as a means of escaping...
> `setlocal` was added in [#1381](https://github.com/gokcehan/lf/pull/1381) but there's no way to unset it because nobody managed to decide on a syntax for it. I personally think using the vim syntax...
One of `lf`s strengths is its expandability. I came up with this custom command: ```sh cmd unsetlocal ${{ dir="$1" opt="${2#no}" if [ $# -ge 2 ] && [ -n "$dir"...
I added it to the [wiki](https://github.com/gokcehan/lf/wiki/Tips/_edit#revert-local-settings). As I don't think there will be a built-in syntax for this (even though it seems useful), I will close this issue.
Personally, I am in favour of this (I suggested the syntax after all). However, this might need a bigger overhaul of the `parser`. There is also the magic variable `&`...