Re: How to replace characters in visual block selection

2024-01-10 Thread arocker
> In second column I would like to replace all A characters with X > characters. > If your example describes the problem completely, :%s/ AAA/ XXX/ should do the trick. Note the space to separate the columns. -- -- You received this message from the "vim_use" maillist. Do not top-post! Type

Re: Function to find all matches in a string?

2023-12-24 Thread arocker
> I was looking for something similar to Python's re.findall()/finditer() > function to answer a question on Reddit[1] but was surprised I > couldn't find anything in > Are you using Linux, MacOS ,or Windows? -- -- You received this message from the "vim_use" maillist. Do not top-post! Type

Re: BUG: terminal vim 9.0.1506 x64 window 10

2023-06-03 Thread arocker
> Vim can't possibly add code to support each peculiarity of each of them. > I'm not sure what generic problem exists that is not terminal-specific. > The early days of Unix coincided with a Cabrian explosion of physical terminals. This led to the development of a database of terminal attributes

Re: vim autoformat ?

2023-05-28 Thread arocker
If it's Perl code, there's a utility called perltidy, which is stand-alone. BTW, I suspect that Bram monitors vim-use, so cc-ing him just means he'll get two copies of the message. -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text

Re: alternating lines ?

2023-03-27 Thread arocker
> not sure how to explain it, but if i want to have one line that is of > background of colorscheme, and line after that, to have like some sort of > deviation in terms of highlight. and line after this, to be again, > background of colorscheme. Essentially, you want the video equivalent of

Re: Beginner? How do I fix these error messeges

2023-03-16 Thread arocker
> Line1 > > line3 > using unix > What error messages? Is something missing from the posting? -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You

Re: [Solved]: Yanking doesn't yank

2023-01-13 Thread arocker
> > Thanks for that, Gary. > > I'm officially an idiot. > -- > Ottavio Caruso > At least you're an honest one. :-)* Welcome to the Order of the Golden Face-Palm, which I think we all earn at one time or another. Confession and explanation improves collective wisdom. -- -- You received this

Re: how to get more efficient writing code

2023-01-04 Thread arocker
Go through the steps you have to take for every piece of code you write, and create scripts to do as much as possible automatically. You have to open a file in Vim, give it a name that is not already in use, put in some boilerplate, (#! line, description of the code's purpose, , depending on

Re: Gvim message on XDG textedit URL link

2022-09-07 Thread arocker
One of the incidental pleasures of this list is the signature tags. I'm not sure wheter today's winner is Bram's: > Shift happens. > -- Doppler or Christian's: -- 10E12 Mikrophone = 1 Megaphon 10E-6 Fisch = 1 Mikrofiche 10E21 Picolos = 1 Gigolo 10 Rationen = 1 Dekoration 3

Re: Regex with backslashes in a collection

2022-08-13 Thread arocker
> I'm using Vim 8 or 9 with 'magic' and re=0 (same using re=1). > > I want to find "\[" or "\]" in text like: > abc\[def\]ghi\\xy\z > The problem may lie in the boundary of a character class, [ and ] and the rules about its content. Does the regex interpreter read [\[] as 2 characters, "\ or ]"

Re: vim9 Benchmark

2022-01-10 Thread arocker
> Maybe interesting for benchmark > https://github.com/tjdevries/vim9jit > If learning Rust isn't the whole purpose of the project, you might want to look at Raku, specifically "grammars". It can be a language for generating languages. -- -- You received this message from the "vim_use"

Re: Vim9 import [was Vim9 script feature-complete]

2022-01-03 Thread arocker
> -- > $ echo pizza > /dev/oven > Totally OT, but Bram's signature file is amazing. Yet another reason to thank him. I shall use that as an example when explaining output mechanisms from now on. -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below

Re: How to suppress "Input is not from a terminal" message?

2021-09-24 Thread arocker
> > I would like to embed vim code inside bash script. > Have you considered using sed, which was designed for this sort of job. rather than twisting vim inside out? -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying

Re: Prevent vim from polluting the file system with a bunch of temporary $HOME/.viminf[a-z] files

2021-07-01 Thread arocker
> The best way to avoid having those files laying around is to find > out why Vim is unable to rename them and fix that problem. Watch > for error messages when Vim closes. > Possibly a permissions problem? A look at the permissions and ownership of the files and the containing directory might

Re: Insert non-rectangular selection

2021-05-26 Thread arocker
> this applies only to the first semi-colon on each line (which > will always exist in your situation and by assumption won't be > found in the paths). > That assumption is probably reasonable, but a semi-colon is a legal character in a Unix/Linux filename. (But should be reagarded as evidence

Re: How to remove paragraphs with specific text from my text file?

2021-04-14 Thread arocker
> igo...@gmail.com stated > I have 130 thousand lines of output file. > - Each output is in separate paragraph. > - Each paragraph has at least two or more rows. > That was a model example of a problem statement; clear illustration of sample input and the desired output. I'd be inclined to go

Re: mapping :W to :w...

2021-02-24 Thread arocker
> the distinctive feeling of flat-hand-against-my-fronthead... ;) > Aka (Also known as:) a face-palm. :-)* -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit

Re: sorting lines by two first virtual column

2021-01-30 Thread arocker
> > I would like to sort lines by order ascendant by the alphabetical value of > the two first columns. > Are you on Windoes, or an *nix? (The example file would be more useful if the input was not in order.) -- -- You received this message from the "vim_use" maillist. Do not top-post! Type

Re: Vim-script question

2020-12-10 Thread arocker
> I want to include in my .vimrc an autocommand that writes some new lines > into an empty file e.g. an zsh script. > A possible alternative is to use a "here" document containing whatever boilerplate you want, in a shell script that then opens vim on the resulting file. -- -- You received

Re: Vim9 dict key notation old fashion depreciated

2020-12-03 Thread arocker
Vocabulary pedant writing here. Though the meaning is obvious in this context, "depreciate" means to lose value, e.g. when a new car is driven off the lot, its value depreciates 25% or so. To express disapproval of something, "deprecate" it. There's just an iota of difference between

Re: How to grep #tag?

2020-10-11 Thread arocker
If we're talking about shell grep, it's wise always to quote the search string, (which kind of quote is preferable depends on which OS/shell), whether it has special characters or not. If it's redundant, no harm done. If it isn't, you don't have to guess how the shell molested your string --

Re: Real laws, yet funny (For Bram's, or anyone's, collection of signature quotes)

2020-09-21 Thread arocker
> > Or maybe I've missed the point. > > Ottavio Caruso > Surely, the point is that a body that passes laws like that has way too much spare time. -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more

Re: VIM and Perl

2020-09-17 Thread arocker
> I need to fix the dependency of VIM on perl without upgrading or > changing Perl > > vim: error while loading shared libraries: libperl.so: cannot open > shared object file: No such file or directory > It sounds as though either something has deleted the object file, or a path setting to find

Re: Wrestling with and ISO-8601 timestamps

2020-09-16 Thread arocker
> How can I tell Vim that, as a Linux user, I don't believe in file names > with spaces in them? They're legal if quoted or escaped - "dummy file" or dummy\ file. -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to.

Re: Broken Q key... how can I leave vim without saving?

2020-09-07 Thread arocker
Assuming the "w" key still works, there's always the "nuke it from orbit" option; write the file when you're satisfied, (or do nothing, if you don't want to save anything, then kill the vim process. -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply

Re: [Hint] quickfix list in vim for follow up errors

2020-07-13 Thread arocker
> > 1. Change the compiler options to ignore or silence warnings. > Isn't that the software equivalent of sticking a nail in the fuse-box? -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information,

Re: An interesting little poser

2020-06-30 Thread arocker
> > I don't know if there's a way to run a macro against a bunch of files in > one pass In that case, I'd suggest using a shell script to execute vim on the files individually. Obviously, going to use slightly more machine time, since it's loading vim n times, but it'c going to be more flexible,

Re: Date in a boilerplate file

2020-06-23 Thread arocker
> I know how to insert date from command line, but is it possible to embed > the command in the boilerplate file and have it transformed into the real > date? In order to keep track of file versions, I have a .vimrc file that updates a timestamp every time the file is saved. That sounds similar

Re: Use Vim to compute the date of Easter

2020-05-03 Thread arocker
>> >> I'm not sure where you're based. You realise, I expect, that England (and >> I think the USA) didn't change to the Gregorian calendar until 1752. I'm not sure that anyone in North America in 1752 cared much about dates more precise than a season, (see "The Soul of A New Machine"), but

Re: "Auto Yes" to Warnings On Save (Scriptability)

2020-03-26 Thread arocker
> I am looking for a way to periodically remove the first N lines of a file, > to implement a "quick and dirty" log file size management scheme. > Have you looked at tail and its options? sed would probably also work, but tail is probably more obvious. -- -- You received this message from the

Re: [EXTERNAL] Re: Mouse not working last 20% of screen

2020-03-17 Thread arocker
> Punch 80 times octal 0 in binary mode in each of them, throw away > the cards but keep the confetti, and use them ne next time weddings > will be permitted. > > Seriously, don't do that. Punched card chads are sharp and hard enough to cause eye injuries. -- -- You received this

Re: Making a tarball

2020-03-16 Thread arocker
> > To make (or unpack) a tarball in general: at the shell prompt > man tar > Just to amplify that a bit, with $ representing the shell prompt: to create a tarball: $ tar -cvzf name_of_archive_to_create directory_to_send That will show you the files in "directory_to_send" being wrapped up.

Re: How about dropping the MzScheme interface?

2020-02-06 Thread arocker
> I know how to breathe since birth, I can't edit text! > Which invites the question "What do you use computers f0r?" Even mail requires entering text. Programs and configuration files are all text, rarely correct when first entered, and almost certainly need to be changed from time to time. --

Re: How about dropping the MzScheme interface?

2020-01-31 Thread arocker
> Sorry Jesus! I meant what do people use Vim or notepad for? > We might find it easier to understand if you explain how you use computers, and for what? What programs do you use as tools? -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the

Re: How about dropping the MzScheme interface?

2020-01-31 Thread arocker
> > On Mi, 29 Jan 2020, Jesus Arocho wrote: > >> I have been reading this thread and I am not sure I understand the >> question: "why would anyone need to alter text" > >From the point of view of a programmer, system administrator, or even a user entering data, this does sound as strange as "why

Re: How to blink text

2019-12-06 Thread arocker
> Hopefully not > I think I'm with Christian on this one. :-)* -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because

Re: regexp : windows filename recognition

2019-10-09 Thread arocker
> Here is a kind of filename in fat chars that I would like to recognize: > > * $FOOBBBAR_Ffbar_f_oobar_(2019-07-29) - Copie.zed.lnk* > 232.0 KiB 2019 There's a practically infinite universe of expressions that could be made to match it. What's

Re: awkembed.vim

2019-07-14 Thread arocker
> Perl is off-topic in this thread. > > I do not want any discussion of Perl in this thread. > OK, just trying to offer a solution. -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit

Re: awkembed.vim

2019-07-13 Thread arocker
> I frequently write (bash) shell scripts with embedded AWK scripts, It sounds as though Perl might be good fit for whatever you are doing. (Perl evolved because shell, sed and awk combinations were becoming cumbersome.) -- -- You received this message from the "vim_use" maillist. Do not

Re: OT: aliases vs functions vs executables

2019-07-11 Thread arocker
Something to bear in mind with all this aliasing, linking, and environmental trickery is the effect on subsequent maintainability. Even if you ensure that it's properly documented and generally understood, how many hours are going to be spent figuring out what's going on before any real problem

Re: Looking for help getting iVim set up

2019-05-29 Thread arocker
We tend to get fixated on automating procedures. Most of the time, if they're recurring jobs, it's worthwhile. Sometimes, if the file is small and the copy/move procedure is sufficiently gruesome, it's simpler just to type it into the destination. The "wrong" way can be less trouble. -- --

Re: how to call vim on files that are the results of a grep -l command in bash?

2019-05-24 Thread arocker
> grep -l 'foo' * | xargs vim > -- Or, if the number isn't likely huge: vim $(grep -l 'foo' *) -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php ---

Re: Font size change

2019-03-18 Thread arocker
> what is the VIM equivalent of the ".exrc" file .vimrc https://vim.fandom.com/wiki/Example_vimrc is just one of many examples a search threw up. -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more

Re: remap C-\ to a different C- key ?

2018-12-17 Thread arocker
Does anyone else feel nostalgia for the days when, once you'd got the terminal running at the right frequency, length and parity, you didn't have to worry about an unknown number of functions leaping out from under their bridges to molest your character strings, (except for Ctl-s)? :-)* -- --

Re: Noswap and Nobackup when editing python on a specific device (mounted) on Linux

2018-11-22 Thread arocker
> 2018-11-22 19:16 GMT+01:00, tu...@posteo.de : >> To avoid unneccassary write cycles to the flash (flash wear out) >> I want to disable backup and swapfile in such a case. Is it technically impossible to copy the file to a work directory, edit it, and write back the edited result? That might

Re: How to use file explorer on my local gVim to access remote file system?

2018-11-12 Thread arocker
> > Now to the problem. I have hundreds of files that I need to edit. That doesn't sound a situation a human being should have to grind through. Is there any possibility of automating the process, using something like sed? -- -- You received this message from the "vim_use" maillist. Do not

Re: vim & platformio

2018-09-12 Thread arocker
> > What is platformio? > Almost certainly this: https://platformio.org/platformio-ide -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You

Re: [faq] What systems does Vim run on

2018-09-07 Thread arocker
>>Okay, removed the DOS. Thanks. > > I think users of DOS would be grateful if you gave > more specific information, e.g.: > > 16-bit DOS: latest supported version 7.1 > 32-bit DOS: latest supported version 7.3 > Given the fluctuating fortunes of OSs, perhaps a matrix of OS vs version would

Re: Perform diff as exact line match

2018-06-29 Thread arocker
>> diff --changed-group-format= file1 file2 >> comm -12 file1 file2 >> > That's insightful but is the side-by-side comparison I was hoping for in > vim so I could visually assess how the collections differed. > Pipe into less? E.g. comm -12 file1 file2 | less -- -- You received

Re: Is it a matter of Unix ABC, B-A-BA', basics, school stuff, RTFM ?

2018-06-18 Thread arocker
> Vim is the right tool to write (and sometimes to read as well). > If it's a text file, (which almost all unix files are), Vim is the right tool to produce it. It can be used in read-only mode, if you're afraid of accidental modifications. An alternative for that job would be "less", (akak

Re: How to insert text on current text position when I press key in vim in insert and normal mode?

2018-06-12 Thread arocker
> On Mon, Jun 11, 2018 at 9:57 PM, Christian Brabandt > mode)? Or if you're dead set on using only one keystroke, any F key > other than F1 (Help) and F10 (Menu) or any Shift-F key, would IMHO be > better than F1. > This reminds me of the story about a nerd who fell into a river and drowned,

Re: Help needed on terminal mappings

2017-11-08 Thread arocker
> -- > It might look like I'm doing nothing, but at the cellular level > I'm really quite busy. > Even if I wasn't a Vim fan, I think I'd subscribe just for Bram's sigs. :-)* -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are

Re: how to quickly change block data order

2017-09-21 Thread arocker
> I have the following situation. I want to change it > >b390 62b3 9062 b390 61b2 > Accually there are many lines (ten thousand more) data need to change > their order. How can I do it? > It's not obvious from the example what transformation you're trying to

Re: A very naive question: any doc (book, web page, ...) to learn step by step how to custom configure vim?

2017-08-11 Thread arocker
> > What I don't seem to find is a documentation newbies-friendly to > custom configure vim. http://shop.oreilly.com/product/9780596529833.do http://shop.oreilly.com/product/11687.do https://www.ibm.com/developerworks/library/l-vim-script-1/index.html Are good places to start. "Conway vim"

Re: Changing Word with Yanked Word

2017-08-02 Thread arocker
> I am looking for a quick way to change a word(cw?) with one that was > yanked (yw). I do not want to enter insert mode, and would like to do it > in command mode. > yw move the cursor immediately before the word to change (however you wish) p 2dw is one way to do it. -- -- You received

Re: [OT] "steep learning curve" ... but what is it actually?

2017-07-30 Thread arocker
> On 2017-07-30 09:10, tu...@posteo.de wrote: >> Suppose this "steep learning curve" would be a graph >> in the mathematical sense -- I would think, that >> the X-axis represents t (time) and the Y-axis represents >> the amount of knowledge k in turn. > Really, the cliche's the wrong way around.

Re: Really simple abbreviation I can't do

2017-07-14 Thread arocker
> Use mappings as suggested here: > Thanks for everyone who has responded. I'm still curious about the extra space inserted by the :ab, when exactly the same sequence, (as far as I can see) does not generate it. -- -- You received this message from the "vim_use" maillist. Do not top-post! Type

Really simple abbreviation I can't do

2017-07-13 Thread arocker
I hesitate to ask this question, since it appears to be so simple, but the answer ought to be useful to a lot of people. There are many constructs in most programming languages which involve paired characters - {} () [] particularly. It would be helpful for the first character (or the pair) to

Re: vim seems to use perl options not in my perl

2017-06-05 Thread arocker
> Seems like vim is requiring some specific versions/features > of perl? Which features? What is happening? -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit

Fame!

2017-04-13 Thread arocker
I think this https://xkcd.com/1823/# is apropos for this list. :-)* -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message

Re: Passing current line number to shell command

2017-03-19 Thread arocker
>> Can anyone give me some guide how I can pass the current line number to >> shell? Depending on what you want to do, and why, you might be better off passing the file through sed or awk. Could you explain your ultimate purpose? -- -- You received this message from the "vim_use" maillist. Do

Re: Help with print encoding

2017-02-19 Thread arocker
> At the end of the day VIM is a text editor. It supports basic printing > with limited styling - it is not a full Unicode scripting engine with > printing. Very interesting discussion. At some point in the evolution from the basic text editor, using something like LaTeX makes more sense.

Re: Filter-like command -- but to insert instead of replacing

2017-02-09 Thread arocker
> Usability takes thought and deliberation. Every time someone asks for > a random feature the solution should not be "let's add a new > :dothisonething command". Agreed. The approach should be "What is the general case, of which this is a particular example?". Then you only have to solve the

Re: Vim as external editor for thunderbird

2017-02-05 Thread arocker
> the current version of thunderbird I cannot use (g)vim as external editor, > nor was an appropriate plugin listed in the thunderbird pages Wouldn't this be better addressed to the Thunderbird people? They seem to have been the ones who broke it. -- -- You received this message from the

Re: HI Can VIM format a flat file to its fields using a record layout (cobol) ?

2017-01-30 Thread arocker
>> In IBM the are tools to map a file according to a given structure >> (File Aid). >> Depending on exactly what this means, Perl's "format" might do the trick: http://www.tutorialspoint.com/perl/perl_formats.htm -- -- You received this message from the "vim_use" maillist. Do not top-post!

Re: Vim ... after new line start at possition and after start

2016-12-29 Thread arocker
> I need vim to put the marker 7spaces in when i push enter for a new line. > Enter text with the code beginning in column 1, then do a global substitution inserting 6 characters at the start of the line when saving a new file? (Numbering at that stage, if desired.) Autoindent should then take

Re: Moving a file

2016-12-11 Thread arocker
> Shawn, what is it you're trying to do, exactly? The two parts of your > question ("changing which file a buffer points to" and "get notified > when a file is externally modified") are unrelated in vim. > This is a vim-related list, but this does raise the question of whether vim is even the

Re: Repeated symbols with Cscope

2016-10-14 Thread arocker
> > No it doesn't, at least not until it started working again. Unfortunately > I forgot to test that before rebooting my machine... > Is this a Heisenbug (disappears when you search for it) or a Schrodingerbug, (appears at random when the box is opened)? :-)* -- -- You received this message

Re: Sorting a column without altering other columns

2016-10-11 Thread arocker
Cesar, have you considered a more appropriate tool for this job, perhaps a spreadsheet? -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You

Re: How gVIM can handle UTF like notepad

2016-10-11 Thread arocker
> On my system the global bomb setting is not used if I don't also add > "setlocal bomb<" or "set bomb<". > Don't even think about discussing this anywhere near an airport! :-)* -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are

Re: Strength of builtin blowfish2 encryption?

2016-09-25 Thread arocker
> I wonder how string the builtin encryption of vim really is. > Encryption really isn't the business of a text editor. Decrypt the cipher-text, feed it to the editor, encrypt when saving, and be sure to delete any temporary/backup files. Yes. there are windows of vulnerability in there, but I

Re: mapping :h to ;

2016-09-25 Thread arocker
>> >> Has someone an advice for me? >> >> Alle > > Thank for your advises. To resume: the function keys F2 till F12 (on my > keyboard) are available as 'shortcuts'. It is not advisable to use keys > Alle deserves compliments for this; reading back the message as understood. (As is the aviation

Re: Searching for a typing game

2016-09-23 Thread arocker
> In the Windows world people try to protect themselves using antivirus > software, with very limitted success. In the FOSS world I usually do > this by limitting installations to packages supported by my distro. Is > there any other way in which one can reduce the chances of installing >

Re: Searching for a typing game

2016-09-22 Thread arocker
> > I am searching for a game to teach typing, which might run in vim or on > the command line (bash). > See http://www.freetypinggame.net/Default.asp or http://www.typingtest.com/games.html No personal experience with them, but they're a start. Just be paranoid about downloading malware.

Re: Compiling Vim GUI on Ubuntu

2016-09-08 Thread arocker
> > That was it, was just missing the vim-gnome package. > And Gnome is where the art is. :-)* -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You

Re: Is there a way to run a shell script that "calls" VIM from outside, passing parameters to it (without to open yours interface)?

2016-07-22 Thread arocker
> > at the risk of uttering blasphemy on the vim-use list, wouldn't awk be > better suited to this task than vim? > "Is this a nail I see before me" quoth the hammer-wielder. :-)* -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you

Re: Digest for vim...@googlegroups.com - 12 updates in 3 topics

2016-07-15 Thread arocker
Name extension discussion. I wholeheartedly agree with Graham Nicholls' objection to Windowsisms, but Richard Mitchell's explanation makes a lot of sense, especially > I wouldn't expect or want to have the extensions on anything in my PATH. An alternative approach might be language-specific

Problem with syntax checker on perl6?

2016-04-29 Thread arocker
> VIM - Vi IMproved 7.4 (2013 Aug 10, compiled Nov 25 2014 12:49:37) > Compiled by doktor5000 - running on Mageia 5 > > Attempting to load any substantial file (> 3 lines, around 50 characters, > approximately) with a reference to perl6 in the !# line results in vim > displaying the line count