promptInputModel.ts ×5

Frontier kind: Code frontier

unlabeled · c_7789786edc0a

39 tests · 12600 LOC · 60 files · introduces 0 tests · 33 LOC · 1 file

Introduces — evidence that enters the hierarchy at this concept

Code
5 ranges33 lines · 1 files
Tests
0 tests

Contains — complete concept membership

All code (extent)
1858 ranges12600 lines · 60 files · Browse complete extent
All tests (intent)
39 testsBrowse complete intent

Neighbourhood graph

The orange circle is the focus. Violet and green circles are every ancestor and descendant, broader and narrower, at any distance; blue squares and pink diamonds are the introduced files and exact introduced tests of every visible concept, not only the focus's. Arrows point from broader to narrower concepts and bridge only concepts omitted from this view. Undirected links show source or test introduction. Concept and file size follows LOC; exact test nodes use test-count units.

Introduced files, introduced tests, and structurally relevant concept specialization

In the embedded map, ordinary wheel input scrolls the page; use the visible controls to zoom and drag to pan. Open the full-screen map for canvas navigation: wheel pans, Ctrl/Command plus wheel zooms, and arrow keys pan when this region is focused. On touch screens, open the full-screen map to pan or pinch. If JavaScript or WebGL is unavailable, use the native relationship evidence on this page.

Graph controls are ready.

Interactive rendering requires JavaScript and WebGL. Use the native relationship evidence on this page while the interactive map is unavailable.

Native relationship evidence

Every exact file and test below is linked only from the concept that introduces it.

Introduced tests

Every collected test enters the hierarchy at exactly one concept.

No tests are introduced at this concept. Its intent tests are introduced by other concepts.

Introduced code

Every collected source range enters the hierarchy at exactly one concept.

1 file ranked by introduced lines: 33 introduced LOC across 5 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

src/vs/platform/terminal/common/capabilities/commandDetection/promptInputModel.ts 33 introduced LOC · 5 ranges

Open complete file

508 // rest of the line that precedes it.
509 if (ghostTextIndex === -1) {
510 > ghostTextIndex = this._scanForGhostTextAdvanced(buffer, line, cursorIndex); promptInputModel.ts
511 > }
512
513 if (ghostTextIndex > -1 && this.value.substring(ghostTextIndex).endsWith(' ')) {
521
522 private _scanForGhostTextAdvanced(buffer: IBuffer, line: IBufferLine, cursorIndex: number): number {
523 > let ghostTextIndex = -1; promptInputModel.ts
524 > let currentPos = buffer.cursorX; // Start scanning from the cursor position
525 >
526 > // Map to store styles and their corresponding positions
527 > const styleMap = new Map<string, number[]>();
528 >
529 > // Identify the last non-whitespace character in the line
530 > let lastNonWhitespaceCell = line.getCell(currentPos);
531 > let nextCell: IBufferCell | undefined = lastNonWhitespaceCell;
532 >
533 > // Scan from the cursor position to the end of the line
534 > while (nextCell && currentPos < line.length) {
535 > const styleKey = this._getCellStyleAsString(nextCell);
536 >
537 > // Track all occurrences of each unique style in the line
538 > styleMap.set(styleKey, [...(styleMap.get(styleKey) ?? []), currentPos]);
539 >
540 > // Move to the next cell
541 > nextCell = line.getCell(++currentPos);
542 >
543 > // Update `lastNonWhitespaceCell` only if the new cell contains visible characters
544 > if (nextCell?.getChars().trim().length) {
545 lastNonWhitespaceCell = nextCell;
546 }
548 >
549 > // If there's no valid last non-whitespace cell OR the first and last styles match (indicating no ghost text)
550 > if (!lastNonWhitespaceCell?.getChars().trim().length ||
551 > this._cellStylesMatch(line.getCell(this._commandStartX), lastNonWhitespaceCell)) {
552 return -1;
553 }
590 }
591
592 > return ghostTextIndex >= cursorIndex ? ghostTextIndex : -1; promptInputModel.ts
593 > }
594
595 /**
617
618 private _getCellStyleAsString(cell: IBufferCell): string {
619 > return `${cell.getFgColor()}${cell.getBgColor()}${cell.isBold()}${cell.isItalic()}${cell.isDim()}${cell.isUnderline()}${cell.isBlink()}${cell.isInverse()}${cell.isInvisible()}${cell.isStrikethrough()}${cell.isOverline()}${cell.getFgColorMode()}${cell.getBgColorMode()}`; promptInputModel.ts
620 > }
621
622 private _cellStylesMatch(a: IBufferCell | undefined, b: IBufferCell | undefined): boolean {