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
I am attempting to port some Ruby code that relies on how Readline handled quoted words and tab-completion. I noticed that Reline lacks a quoting_detection_proc hook. I also noticed while testing that it cannot tab-complete quoted words for some reason?
Example
require'reline'Reline.completion_proc=proc{ |word,preposing| %w[foo]}# should always tab-complete to 'foo'pReline.readline('> ')
This could be very useful to migrate from readline (deprecated in ruby 3) to reline in some tools like evil-winrm, so thanks for asking this. If finally is implemented that could ease a lot our work to migrate to reline our auto complete feature. Thanks.
Description
I am attempting to port some Ruby code that relies on how
Readline
handled quoted words and tab-completion. I noticed thatReline
lacks aquoting_detection_proc
hook. I also noticed while testing that it cannot tab-complete quoted words for some reason?Example
Test 1:
Test 2:
Test 3:
Terminal Emulator
LANG=en_US.UTF-8
TERM=xterm-256color
Version
The text was updated successfully, but these errors were encountered: