tmux-team 4.0.0-beta.1 → 4.0.0
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 +1 -1
- package/src/tmux.ts +2 -2
package/package.json
CHANGED
package/src/tmux.ts
CHANGED
|
@@ -40,8 +40,8 @@ export function createTmux(): Tmux {
|
|
|
40
40
|
}
|
|
41
41
|
|
|
42
42
|
function escapeExclamation(message: string): string {
|
|
43
|
-
//
|
|
44
|
-
return message.replace(/!/g, '
|
|
43
|
+
// Replace "!" with fullwidth "!" (U+FF01) to avoid shell history expansion
|
|
44
|
+
return message.replace(/!/g, '\uff01');
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
function makeBufferName(): string {
|