This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (defun find-sidecar (file extension) | |
| "Open FILE and its EXTENSION sidecar in adjacent windows. | |
| Prefer an existing window to the left, then one to the right." | |
| ;; Usage: | |
| ;; M-x find-sidecar RET | |
| ;; File: path/to/file.ext RET | |
| ;; Sidecar extension: ext2 RET | |
| ;; | |
| ;; Opens: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "bufio" | |
| "fmt" | |
| "net/http" | |
| "os" | |
| "sync" | |
| ) |
OlderNewer