-
Notifications
You must be signed in to change notification settings - Fork 131
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cursor control in complete suggestion? #128
Comments
The last time we needed more features, we upgraded Something like type WordAndPos struct {
Word string // completion string
Pos int // position of cursor within completion string
}
type PosCompleter func(line string, pos int) (head string, completions []WordAndPos, tail string) (except with a better name than WordAndPos) Thoughts? |
yes, I like this proposal. Finding a good name is always a challenge.
|
"Move word back" and "set to end" are redundant when you have "set position". I especially want to avoid things like "move word back" when "word" is so poorly defined (and subject to change; See #113 for discussion) liner isn't a text editor. I try to keep it as close to bash as possible. Unless bash has selections that I'm not aware of (which is possible, bash has lots of features that I'm not aware of) "create a selection" sounds like a feature that liner won't ever have. |
fair enough. let's keep it simple. Suggestion:
Rationale: putting the cursor "in" the completed word is for the purpose of editing it after completion |
I don't know if I like that more or less than PosCompleter. As they say, there are only two hard things in programming: Naming, Caching, and off-by-one errors. You're doing the work, I'll let you choose the name (within reason). |
work in progress https://github.com/emicklei/liner/tree/poscomplete |
Hi,
I am looking for a way to move the cursor into a completed suggestion.
For example, if I type
p
and it completes toplay("")
, I would like the cursor to be positioned right after the first"
.I tried adding an ANSI escape sequence
\033[2D
(move cursor back 2x) but it is not being interpreted. An alternative could be to have a post complete func and a way to tell the *State that a cursor move is requested (programmatic CtrlB).Before working on such a feature, I would like to have some feedback on this.
Thx,
Ernest
The text was updated successfully, but these errors were encountered: