David le Blanc
David le Blanc
There doesn't seem to be a way to include '/' in the search string, neither as itself, or escaped via `\/`
Hi, I'm not sure if you are maintaining this script, but I've been finding it pretty useful. I've encountered a few issues, but only one which I could fix without...
HI, I need to provide access for roaming devices to complete their regular backups, but I don't want the KOPIA gui to be exposed on the internet. (Currently VPN is...
Issue: If I use `z` when a filesystem (like /home) is unmounted, all references to /home are instantly purged from the cd history. This has caught me out enough times...
Hi, I don't know if this is actively developed, but I struck an issue with a WEBDAV server where it sent an `expect: 100-continue` header which caused authelia to emit...
I have a number of "safe" macro's I load in `~/.jq` because it will autoload and is super convenient for interactive use. Unfortunately this makes it impossible to have a...
Is there any plan to merge the recent 0.78 release? We are migrating to openssh certificate based authentication and work and I will be forced to swap back to regular...
Outside of a quoted string, "${VAR" is split into "$" "{" and "VAR", and pressing TAB attempts filename completion on "VAR". The following patch ```patch @@ -14,7 +14,7 @@ _fzf_bash_completion_shell_split()...
The function `fzf_bash_completion()` should honor the bash/readline setting `no_empty_cmd_completion` for example ```bash fzf_bash_completion() { if [[ -z "${READLINE_LINE}" ]] && shopt -q no_empty_cmd_completion; then return 1 fi ... ``` This...
Using the latest MASTER of SSHPortal, I noticed my client connections disconnected randomly. It turns out the session check in `pkg/bastion/ssh.go` calls "conn.close" within 30 seconds of a port-forward session...