all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Deniz Dogan <deniz.a.m.dogan@gmail.com>
To: Scott Frazer <frazer.scott@gmail.com>
Cc: fork <forkandwait@gmail.com>, help-gnu-emacs@gnu.org
Subject: Re: Adding total lines to modeline (NOT percentage)?
Date: Fri, 15 Apr 2011 01:03:50 +0200	[thread overview]
Message-ID: <BANLkTikrs9iXrECQ4vMs46S7q7vGP73iLg@mail.gmail.com> (raw)
In-Reply-To: <4DA73885.8000802@gmail.com>

2011/4/14 Scott Frazer <frazer.scott@gmail.com>:
> On 4/13/11 3:11 PM, fork wrote:
>>
>> Is there a way to customize my modeline such that I can see the total
>> number of
>> lines of the current file?
>>
>> The percentage is not particularly interesting to me...
>>
>> Thanks!
>>
>
> I use these forms in my `mode-line-format' variable to show
> "current_line/total_num_lines":
>
> (list 'line-number-mode "  L%l/")
> (list 'line-number-mode (:eval (int-to-string (count-lines (point-min)
> (point-max)))))
>
>

Note that this method will be affected by narrowing. To get the full
number of lines in the buffer use (1+ (count-lines 1 (buffer-size))).
This could also get rather sluggish when used in large buffers. The
best way would probably be to use a timer to recalculate the number of
lines in the buffer and then use that.

-- 
Deniz Dogan



  reply	other threads:[~2011-04-14 23:03 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-04-13 19:11 Adding total lines to modeline (NOT percentage)? fork
2011-04-14 18:10 ` Scott Frazer
2011-04-14 23:03   ` Deniz Dogan [this message]
2011-04-15  8:21     ` Eli Zaretskii

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=BANLkTikrs9iXrECQ4vMs46S7q7vGP73iLg@mail.gmail.com \
    --to=deniz.a.m.dogan@gmail.com \
    --cc=forkandwait@gmail.com \
    --cc=frazer.scott@gmail.com \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.