Laurence Morgan

Results 175 comments of Laurence Morgan

Removing the `bug` label because this is now a feature request

Temporary named pipes are now supported (albeit name might change). A couple of examples ``` out: GET / cat: README.md ``` --- I don't particularly fancy using the same format...

Additional support has now been included in v2.2 to set environmental variables per executable. Bash ``` $ foo=bar env | grep foo foo=bar ``` Murex ``` $ env | grep...

Hi @supreetsingh10 Thank you for your interest. This is a sufficiently distinct piece of work that I'm happy for you to be the judge on how you want to go...

I've also added some documentation with regards to syntax / parsing rules that might help: https://murex.rocks/docs/GUIDE.parser.html A breakdown of the core builtins is documented here: https://murex.rocks/docs/GUIDE.builtin-functions.html I'm not going to...

Delayed autocompletion has been implemented and pushed to the `recursive-directory-enhancements` branch (commit: ff34783). There are a few things to bare in mind: 1. This pushes the _murex_ branch of `readline`...

re exclusion paths, currently _murex_ just uses `filesystem.Walk` because it was the fastest (in terms of development time) way to implement that feature. However it might make more sense to...

docker-compose: 5cb182a5491196cc6a9ccaa7d48af8a0a9f3cd80

For best docker-compose completions, install the `devops/docker-compose` module: ``` murex-package install https://github.com/lmorg/murex-module-devops ```

`alias` and `autocomplete` would require too much work to complete: * `alias` is a problem because of the way aliases are processed in _murex_: ``` executeProcess: switch { case GlobalAliases.Exists(p.Name)...