MCPcopy Index your code
hub / github.com/codeaashu/claude-code / isMemoryWriteOrEdit

Function isMemoryWriteOrEdit

src/utils/collapseReadSearch.ts:109–115  ·  view source on GitHub ↗

* Check if a Write or Edit tool use targets a memory file and should be collapsed.

(toolName: string, toolInput: unknown)

Source from the content-addressed store, hash-verified

107 * Check if a Write or Edit tool use targets a memory file and should be collapsed.
108 */
109function isMemoryWriteOrEdit(toolName: string, toolInput: unknown): boolean {
110 if (toolName !== FILE_WRITE_TOOL_NAME && toolName !== FILE_EDIT_TOOL_NAME) {
111 return false
112 }
113 const filePath = getFilePathFromToolInput(toolInput)
114 return filePath !== undefined && isAutoManagedMemoryFile(filePath)
115}
116
117// ~5 lines × ~60 cols. Generous static cap — the renderer lets Ink wrap.
118const MAX_HINT_CHARS = 300

Callers 1

getToolSearchOrReadInfoFunction · 0.85

Calls 2

getFilePathFromToolInputFunction · 0.85
isAutoManagedMemoryFileFunction · 0.85

Tested by

no test coverage detected