Skip to content

Commit

Permalink
Add a note about restarting the server
Browse files Browse the repository at this point in the history
  • Loading branch information
techee committed May 10, 2024
1 parent 10fc117 commit 749ac83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lsp/src/lsp-main.c
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ static void on_document_visible(GeanyDocument *doc)
{
gchar *ft_lower = g_utf8_strdown(doc->file_type->name, -1);

dialogs_show_msgbox(GTK_MESSAGE_WARNING, _("Because of conflicting implementations, the LSP plugin requires that symbol generation is disabled for the filetypes for which LSP is enabled.\n\nTo disable it for the current filetype, go to:\n\nTools->Configuration Files->...->filetypes.%s\n\nand under the [settings] section add tag_parser= (with no value after =) which disables the symbol parser."), ft_lower);
dialogs_show_msgbox(GTK_MESSAGE_WARNING, _("Because of conflicting implementations, the LSP plugin requires that symbol generation is disabled for the filetypes for which LSP is enabled.\n\nTo disable it for the current filetype, go to:\n\nTools->Configuration Files->...->filetypes.%s\n\nand under the [settings] section add tag_parser= (with no value after =) which disables the symbol parser. Plugin reload or Geany restart may be required afterwards."), ft_lower);
g_free(ft_lower);
}
#endif
Expand Down

0 comments on commit 749ac83

Please sign in to comment.