diff options
| author | jixiufeng <jixiufeng@luojilab.com> | 2018-12-01 00:49:04 +0800 |
|---|---|---|
| committer | jixiufeng <jixiufeng@luojilab.com> | 2018-12-01 01:15:35 +0800 |
| commit | d0fef6124ed6398097fdf3b9593104cabb901fc3 (patch) | |
| tree | fd4112ad9f9e770b7e3b874c646212bc6791d04c | |
| parent | da9e9b8f3dd2bbef79c737aa0fb125cd0bf606f9 (diff) | |
use count-lines in (vterm--buffer-line-num)
| -rw-r--r-- | vterm.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -305,7 +305,7 @@ Feeds the size change to the virtual terminal." (defun vterm--buffer-line-num() "Return the maximum line number." - (line-number-at-pos (point-max))) + (count-lines (point-min) (point-max))) (defun vterm--set-title (title) "Run the `vterm--set-title-hook' with TITLE as argument." |
