bingocode 1.1.176 → 1.1.177

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bingocode",
3
- "version": "1.1.176",
3
+ "version": "1.1.177",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "claude": "bin/claude-win.cjs",
@@ -266,7 +266,11 @@ export class EditNotFoundError extends Error {
266
266
  * tab → '→', space → '·'
267
267
  */
268
268
  export function visibleWhitespace(str: string): string {
269
- return str.replace(/\t/g, '→').replace(/ /g, '·')
269
+ return str
270
+ .replace(/\t/g, '→')
271
+ .replace(/ /g, '·')
272
+ .replace(/\n/g, '↵')
273
+ .replace(/\r/g, '␍')
270
274
  }
271
275
 
272
276
  /**