liner icon indicating copy to clipboard operation
liner copied to clipboard

Cursor control in complete suggestion?

Open emicklei opened this issue 5 years ago • 6 comments

Hi,

I am looking for a way to move the cursor into a completed suggestion. For example, if I type p and it completes to play(""), 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

emicklei avatar Mar 21 '20 17:03 emicklei

The last time we needed more features, we upgraded Completer with WordCompleter. This time, it probably makes sense to upgrade WordCompleter to PosCompleter

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?

peterh avatar Mar 22 '20 16:03 peterh

yes, I like this proposal. Finding a good name is always a challenge. Maybe to generalise this, instead of returning a Pos int, we could have a CursorInstruction that be used to do:

  • set position (like WordPos)
  • move word back
  • set to end
  • create a selection (future feature?)

emicklei avatar Mar 23 '20 08:03 emicklei

"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.

peterh avatar Mar 24 '20 03:03 peterh

fair enough. let's keep it simple. Suggestion:

  • type EditableWordCompleter
  • func(line string, pos int) (head string, completions []EditableWord, tail string)

Rationale: putting the cursor "in" the completed word is for the purpose of editing it after completion

emicklei avatar Mar 24 '20 13:03 emicklei

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).

peterh avatar Mar 26 '20 03:03 peterh

work in progress https://github.com/emicklei/liner/tree/poscomplete

emicklei avatar Mar 29 '20 12:03 emicklei