We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If define g_hWsServer as global, autocompletion is broken
WebSocketServer g_hWsServer; Action ws_server(int args) { g_hWsServer = new WebSocketServer("::", 9999, AF_INET6); g_hWsServer.SetMessageCallback(onSrvMessage); // No autocomplete g_hWsServer.Start(); return Plugin_Handled; }
Action ws_server(int args) { WebSocketServer WsServer = new WebSocketServer("::", 9999, AF_INET6); WsServer.SetMessageCallback(onSrvMessage); // autocompletion works WsServer.Start(); return Plugin_Handled; }
The text was updated successfully, but these errors were encountered:
update: unable to parse variable type in this format
WebSocketServer g_hWsServer; // unknown variable type
WebSocketServer g_hWsServer; // ok
Sorry, something went wrong.
I can't reproduce this, I assume it's fixed. Please reopen if needed 👍
Sarrus1
No branches or pull requests
Basic informations
Further Information
If define g_hWsServer as global, autocompletion is broken
To Reproduce
Expected behaviour
Error messages
The text was updated successfully, but these errors were encountered: