class TypeProf::LSP::Message::TextDocument::DidClose
textDocument/willSave 通知 textDocument/willSaveWaitUntil 请求 textDocument/didSave 通知
常量
- METHOD
公共实例方法
run() 点击以切换源代码
# File typeprof-0.30.1/lib/typeprof/lsp/messages.rb, line 164 def run @params => { textDocument: { uri: } } text = @server.open_texts.delete(uri) return unless text @server.core.update_file(text.path, nil) end