diff options
| author | Mike Brumlow <mbrumlow@roblox.com> | 2024-03-24 19:57:21 -0700 |
|---|---|---|
| committer | Gabriele Bozzola <sbozzolator@gmail.com> | 2024-03-25 08:51:14 -0700 |
| commit | ae4ae1aef2fcae98a37aad83f2a6aeeaeacedd4f (patch) | |
| tree | 7afafe36495f3776ddf0598d4d05e99386c460b9 | |
| parent | 303decd923ef83a184b861d34081fd8635484a03 (diff) | |
Ensures the starting col is the same as later calculated
| -rw-r--r-- | vterm.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -751,7 +751,7 @@ Exceptions are defined by `vterm-keymap-exceptions'." (inhibit-eol-conversion nil) (coding-system-for-read 'binary) (process-adaptive-read-buffering nil) - (width (max (- (window-body-width) (vterm--get-margin-width)) + (width (max (- (window-max-chars-per-line) (vterm--get-margin-width)) vterm-min-window-width))) (setq vterm--term (vterm--new (window-body-height) width vterm-max-scrollback |
