Aaron Dill

Results 129 comments of Aaron Dill

@lambdalisue I've rebased this onto HEAD. I've also introduced a few changes: The checking introduced in https://github.com/lambdalisue/suda.vim/commit/257767d7977414210b6db9df0be39b9789d83978 is *only* done on 'sudo', since there's no guarantee that the user provided...

I believe this is the same issue as #61, which I describe here: https://github.com/lambdalisue/suda.vim/issues/61#issuecomment-1990924321

I have encountered this same issue in my library `lua-stream`. My file structure looks like this: ``` > tree . ├── doc │   └── examples.lua ├── LICENSE ├── lua │  ...

this can now handle all the below cases: ```shell . "$dir/file" . "$dir/other/file" . "$dir"/file . $dir/file . $dir"/file" . "$dir"/"file" . "${dir:-.}"/"file" . ${dir}/"fi"l'e' source "$dir/file" ``` It intentionally...

> > It intentionally fails on these: > > > > is there a way to make it work? seems that's the much more usage case. potentially, but these cases...

Btw, that setting should be set only to `http://localhost:5000`. The rest of that string is used for the `JSON` settings.

See [here](https://www.shellcheck.net/wiki/Directive#source-path) for shellcheck's documentation about this pattern.

This could look something like this (example for the tray) and would work because the flags are represented as a single integer which are bitwise OR'ed together (and `FLAGS_NONE` is...

One additional note slightly unrelated to this PR, the Gio docs state that `FLAGS_NONE` is depreciated in favor of `DEFAULT_FLAGS` in version 2.74. [Gio.ApplicationFlags.FLAGS_NONE](https://lazka.github.io/pgi-docs/Gio-2.0/flags.html#Gio.ApplicationFlags.FLAGS_NONE) According to `Dependencies.md`, Gio >= 2.32...

I don't particularly need (or want) multiple applet processes, however I figured it might take slightly more processing to launch several trays vs just brute force another applet. Honestly, D-Bus...