mirror of
https://github.com/shazow/ssh-chat.git
synced 2025-04-13 07:37:17 +03:00
Disabled autocomplete due to #166.
Also added mutex for user replyTo pointer, since that's being set by both the host and user.
This commit is contained in:
parent
1662ecd431
commit
c4604fde94
@ -28,9 +28,11 @@ type User struct {
|
||||
done chan struct{}
|
||||
Ignored *common.IdSet
|
||||
|
||||
replyTo *User // Set when user gets a /msg, for replying.
|
||||
screen io.WriteCloser
|
||||
closeOnce sync.Once
|
||||
|
||||
mu sync.Mutex
|
||||
replyTo *User // Set when user gets a /msg, for replying.
|
||||
}
|
||||
|
||||
func NewUser(identity Identifier) *User {
|
||||
@ -62,11 +64,15 @@ func (u *User) SetId(id string) {
|
||||
|
||||
// ReplyTo returns the last user that messaged this user.
|
||||
func (u *User) ReplyTo() *User {
|
||||
u.mu.Lock()
|
||||
defer u.mu.Unlock()
|
||||
return u.replyTo
|
||||
}
|
||||
|
||||
// SetReplyTo sets the last user to message this user.
|
||||
func (u *User) SetReplyTo(user *User) {
|
||||
u.mu.Lock()
|
||||
defer u.mu.Unlock()
|
||||
u.replyTo = user
|
||||
}
|
||||
|
||||
|
3
host.go
3
host.go
@ -120,7 +120,8 @@ func (h *Host) Connect(term *sshd.Terminal) {
|
||||
|
||||
// Successfully joined.
|
||||
term.SetPrompt(GetPrompt(user))
|
||||
term.AutoCompleteCallback = h.AutoCompleteFunction(user)
|
||||
// FIXME: Re-enable once https://github.com/shazow/ssh-chat/issues/166 is fixed.
|
||||
//term.AutoCompleteCallback = h.AutoCompleteFunction(user)
|
||||
user.SetHighlight(user.Name())
|
||||
|
||||
// Should the user be op'd on join?
|
||||
|
Loading…
x
Reference in New Issue
Block a user