]> Sergey Matveev's repositories - vim-lsp.git/blobdiff - autoload/lsp/callhierarchy.vim
Update diags location list when the diags for the buffer changes. Update comments
[vim-lsp.git] / autoload / lsp / callhierarchy.vim
index e91d08ba71f18b71fc5e85dcf4db53983cd0e99f..aa2ed404de020ea604bcfaa50bc1f9872d92d753 100644 (file)
@@ -12,7 +12,7 @@ def CallHierarchyItemJump()
   util.JumpToLspLocation(item, '')
 enddef
 
-# Refresh the call hierarchy tree for the symbol at index 'idx'.
+# Refresh the call hierarchy tree for the symbol at index "idx".
 def CallHierarchyTreeItemRefresh(idx: number)
   var treeItem: dict<any> = w:LspCallHierItemMap[idx]
 
@@ -22,7 +22,7 @@ def CallHierarchyTreeItemRefresh(idx: number)
   endif
 
   if !treeItem->has_key('children')
-    # First time retrieving the children for the item at index 'idx'
+    # First time retrieving the children for the item at index "idx"
     var lspserver = buf.BufLspServerGet(w:LspBufnr)
     if lspserver->empty() || !lspserver.running
       return