Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Remove apply_transaction helper (#5598) | Ivan Tham | 2023-01-21 |
| | |||
* | Silence dead_code warning on AppBuilder::with_config | Michael Davis | 2022-10-20 |
| | | | | | This function is not currently used but is likely to be useful in the future, so this change silences the dead_code warning. | ||
* | Remove language-server configuration in integration tests | Michael Davis | 2022-10-20 |
| | | | | | | | | | | | | | | | | | | | | | This change removes language server configuration from the default languages.toml config for integration tests. No integration-tests currently depend on the availability of a language server but if any future test needs to, it may provide a language server configuration by passing an override into the `test_syntax_conf` helper. Language-servers in integration tests cause false-positive failures when running integration tests in GitHub Actions CI. The Windows runner appears to have `clangd` installed and all OS runners have the `R` binary installed but not the `R` language server package. If a test file created by `tempfile::NamedTempFile` happens to have a file extension of `r`, the test will most likely fail because the R language server will fail to start and will become a broken pipe, meaning that it will fail to shutdown within the timeout, causing a false-positive failure. This happens surprisingly often in practice. Language servers (especially rust-analyzer) also emit unnecessary log output when initializing, which this change silences. | ||
* | Use helix_view::apply_transaction in integration-tests | Michael Davis | 2022-10-20 |
| | | | | | | | `helix_view::apply_transaction` closes over `Document::apply` and `View::apply` to ensure that jumplist entries are updated when a document changes from a transaction. `Document::apply` shouldn't be called directly - this helper function should be used instead. | ||
* | improve app close failure display | Skyler Hawthorne | 2022-10-19 |
| | |||
* | document should save even if formatter fails | Skyler Hawthorne | 2022-10-19 |
| | |||
* | various fixes in write-all path | Skyler Hawthorne | 2022-10-19 |
| | |||
* | fix buffer-close | Skyler Hawthorne | 2022-10-19 |
| | |||
* | factor new Application with file arg to function | Skyler Hawthorne | 2022-06-19 |
| | |||
* | add test for write-quit happy path | Skyler Hawthorne | 2022-06-19 |
| | |||
* | rename test helpers | Skyler Hawthorne | 2022-06-19 |
| | |||
* | rename top level module to satisfy cargo fmt | Skyler Hawthorne | 2022-06-19 |