Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Added
* Added functions to `basilisp.test` for using and combining test fixtures (#980)
* Added the `importing-resolve` function for dynamically importing and resolving a Python name (#1065, #1070)
* Added support for highlighting matching parens, brackets, and braces at the REPL (#1074)

### Fixed
* Fix a bug where the reader was double counting the CRLF newline seq in metadata (#1063)
Expand Down
2 changes: 2 additions & 0 deletions src/basilisp/prompt.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
from prompt_toolkit.history import FileHistory
from prompt_toolkit.key_binding import KeyBindings
from prompt_toolkit.key_binding.key_processor import KeyPressEvent
from prompt_toolkit.layout.processors import HighlightMatchingBracketProcessor

from basilisp.lang import reader as reader
from basilisp.lang import runtime as runtime
Expand Down Expand Up @@ -77,6 +78,7 @@ def __init__(self):
key_bindings=self._get_key_bindings(),
lexer=self._prompt_toolkit_lexer,
multiline=True,
input_processors=[HighlightMatchingBracketProcessor(chars="[](){}")],
**self._style_settings,
)

Expand Down