You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
nREPL server should not send color ANSI esc seqs to the clients (#1040)
Hi,
could you please review patch to prevent the nREPL server sending color
ANSI esc seqs to the clients. It fixes#1039.
I modified the path from the nREPL server down to the Pygments call to
accept a `disable_color` parameter, which stops color formatting.
I've also updated the tests to reflect this change. The
`src/basilisp/lang/source.py` test is currently placed under
`tests/basilisp/lang`, though I noticed the other tests in the
`src/basilisp/` subdirectories don't follow this structure -- not sure
why that is. I'm happy to relocate it to `tests/basilisp` if needed.
Thanks
---------
Co-authored-by: ikappaki <[email protected]>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
## [Unreleased]
8
8
### Changed
9
9
* The compiler will no longer require `Var` indirection for top-level `do` forms unless those forms specify `^:use-var-indirection` metadata (which currently is only used in the `ns` macro) (#1034)
10
+
* nREPL server no longer sends ANSI color escape sequences in exception messages to clients (#1039)
10
11
11
12
### Fixed
12
13
* Fix a bug where the compiler would always generate inline function definitions even if the `inline-functions` compiler option is disabled (#1023)
0 commit comments