Laurence Morgan
Laurence Morgan
This bug is soooo old. I was running into it about 3 years ago and in the end I wrote my own readline package. There's a few forks of this...
The issue I think is with your code: readline.GetSize(0) GetSize requires the fd of the TTY, which in some cases will be zero (eg if it's your first console on...
Rather than fixing `@g`, instead I'm going to deprecate it in favour of native globbing via: ``` config: set shell auto-glob true ``` This offers a better balance between REPL...
Beta testing was successful and has since been merged into master. Awaiting a review for whether `F_NEW_VARTABLE` and `F_PARENT_VARTABLE` are safe to deprecate.
Work started on the marshaller rewrite: - [ ] marshaller - [x] unmarshaller - [x] index The marshaller is part written. Support for more Go data-types need to be added
`parser_func_esc_test.go`: ```go // Some of these tests are commented out. This is because those characters // cannot be used with the wrapper test functions and will instead require // dedicated...
`parser_pipe_test.go` has a commented out test because test causes panic. Panic needs to be fixed: ```go /*{ Block: `=>foo`, Expected: []parserTestSimpleExpected{ { Name: "foo", Parameters: []string{}, Method: TEST_METHOD, }, },...
`parser_special_cmds_test.go` only checks for `@g` (auto-glob) and `=`. Other checks might include: - [ ] `$` (variable) - [ ] `@` (other uses of arrays) - [ ] `(` (string)...
74ad319 and 18b1191 contain additional parser and compiler tests for [parser_pipe_test.go](https://github.com/lmorg/murex/issues/221#issuecomment-641790654)
This also came up in https://github.com/lmorg/murex/issues/389