Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | fix(shell): on Windows :make does not echo #22728 | Enan Ajmain | 2023-03-19 |
| | | | | | | | | | | | | | | Problem: On Windows, :make does not display the output of the program it runs. The cause is the default 'shellpipe'. On Linux, nvim uses `tee` to redirect the output to both stdout and the error file. In Windows, for both cmd.exe and powershell, the output is only redirected to the error file. Solution: - On Windows, change the 'shellpipe' default to "2>&1| tee". - Nvim includes `tee` in its Windows package. - Document recommended defaults for powershell. Fixes #12910 | ||
* | refactor(tests): introduce testprg() | Justin M. Keyes | 2022-06-25 |
| | | | | | | Also: - Add a describe('shell :!') section to system_spec. - Make the test for #16271 work on systems without powershell. | ||
* | doc(options): Fix recommended PowerShell config (#14349) | Dimitri Tcaciuc | 2021-07-02 |
Ensure that * Shell uses UTF8 input/output mode * Stderr output is captured, in UTF8 * Program exit codes are correctly captured Update functional test harness and add tests for :make command. Closes #13713 |