summaryrefslogtreecommitdiff
path: root/ted.h
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2025-03-05 20:31:30 -0500
committerpommicket <pommicket@gmail.com>2025-03-05 20:48:59 -0500
commit8de9b9568caf088e9f75d880fae7105661d9e0dc (patch)
tree696b5447b6da7b5f3a816f3bed5f5cae2ad5bcd3 /ted.h
parent4d7533828738401b76bab5be2e22f0d4a69e30b1 (diff)
add support for textDocument/prepareRename
Diffstat (limited to 'ted.h')
-rw-r--r--ted.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/ted.h b/ted.h
index da4144e..44527ea 100644
--- a/ted.h
+++ b/ted.h
@@ -945,6 +945,8 @@ void format_file(Ted *ted);
void hover_reset_timer(Ted *ted);
// === ide-rename-symbol.c ===
+/// Start renaming process (open rename menu when LSP is ready)
+void rename_symbol_start(Ted *ted);
/// rename symbol at cursor of `buffer` to `new_name`
void rename_symbol_at_cursor(Ted *ted, TextBuffer *buffer, const char *new_name);