mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-16 12:58:48 +08:00
Let nav-insert-selected add a trailing space.
This commit is contained in:
parent
0bab585b77
commit
119658702b
|
@ -55,7 +55,7 @@ func triggerNavShowHidden(ed *Editor) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func navInsertSelected(ed *Editor) {
|
func navInsertSelected(ed *Editor) {
|
||||||
ed.insertAtDot(parse.Quote(ed.navigation.current.selectedName()))
|
ed.insertAtDot(parse.Quote(ed.navigation.current.selectedName()) + " ")
|
||||||
}
|
}
|
||||||
|
|
||||||
func defaultNavigation(ed *Editor) {
|
func defaultNavigation(ed *Editor) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user