diff options
| author | C. McEnroe | 2021-03-02 14:45:01 -0500 | 
|---|---|---|
| committer | C. McEnroe | 2021-03-02 14:45:01 -0500 | 
| commit | d88ffd9f3fe57e463818a70091aad7d746e2f895 (patch) | |
| tree | 49f140d45dfa77293363780f260a5357bc880611 | |
| parent | f4e8f055fbd0c0237847935ae87dd0a582133203 (diff) | |
Add all window names to global completion
Don't want to be touching window names much though, otherwise query
window names would interfere with tab completion within a channel.
| -rw-r--r-- | ui.c | 2 | 
1 files changed, 2 insertions, 0 deletions
@@ -133,10 +133,12 @@ static uint windowFor(uint id) {  	window->time = uiTime.enable;  	window->thresh = Cold;  	window->buffer = bufferAlloc(); +	completeAdd(None, idNames[id], idColors[id]);  	return windowPush(window);  }  static void windowFree(struct Window *window) { +	completeRemove(None, idNames[window->id]);  	bufferFree(window->buffer);  	free(window);  }  | 
