mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-16 18:03:36 +00:00
Estimated hours taken: 3 Branches: main Disable --More-- prompt when completion list fills the screen. This prevents having to put special control characters in the expected output which were different on some platforms, causing the test to fail. tests/debugger/completion.exp New expected output without --More-- prompt. tests/debugger/completion.inputrc Added setting to prevent --More-- prompt.
13 lines
369 B
Plaintext
13 lines
369 B
Plaintext
# Don't query the user if there are too many completions.
|
|
set completion-query-items 100000
|
|
|
|
# Display all completions immediately, without
|
|
# requiring multiple `complete' commands.
|
|
set show-all-if-ambiguous on
|
|
|
|
# Disable --More-- prompt when completion list fills screen.
|
|
set page-completions off
|
|
|
|
# Make the completion requests show up in the input file.
|
|
@: complete
|