Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

vim · Vim (Vi IMproved) text editor users list

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 118633 - 118662 of 137698   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
118633 Zhanglistar
1193140513@... Send Email
Nov 1, 2010
8:29 am
Vim manual says that to move to the start of the outer block use the "[[" command. But when I use "[[", it jumps to the head of file, which is a C program. And...
118634 John Beckett
johnb.beckett@... Send Email
Nov 1, 2010
9:51 am
... Vim is not a compiler and it has no idea where functions start and stop. Your code probably differs from the style expected by Vim, my guess being that...
118635 statquant2
statquant@... Send Email
Nov 1, 2010
10:56 am
Hi guys, silly question, is it possible to set the line numbers such that you cannot copy them ? I like to have the line number but I am fed up with having to...
118636 Tim Chase
vim@... Send Email
Nov 1, 2010
12:16 pm
... And to reverse the condition, one could use something like ... ("if there's a character at position 40, don't delete this row; otherwise, delete it") -tim ...
118637 statquant2
statquant@... Send Email
Nov 1, 2010
1:03 pm
Hi all, I use to work on VStudio, one nice feature was the possibility to go to a function definition by right clicking. I have built tabs for my cpp project...
118638 Tim Chase
vim@... Send Email
Nov 1, 2010
2:23 pm
... Actually, the problem is the reverse -- it fails to delete lines ... so any line that doesn't have a character at position 40 (lines <40 chars) will be...
118639 caruso_g
peppecaruso@... Send Email
Nov 1, 2010
2:35 pm
Hi all. I am not able to find how to selectively close a buffer keeping opened all another ones. I mean, having several buffers opened, I understood I should...
118640 Tereno
tereno@... Send Email
Nov 1, 2010
3:03 pm
Hi all, I'm trying to figure how I can get digraphs (as well as unicode characters if possible) displayed properly. When I type :digraphs, I get the list of...
118641 aleCodd
33facebook@... Send Email
Nov 1, 2010
3:23 pm
is there any way to use the familiar :map and :ab commands when running bash with "set -o vi"? ... how is it done? can bash "understand&quot; vi-like commands? in...
118642 ZyX
zyx.vim@... Send Email
Nov 1, 2010
3:28 pm
Reply to message «Re: delete only the short sentences», sent 17:21:40 01 November 2010, Monday ... s/character/byte/ \%c does nothing with characters, it...
118643 Ivan S. Freitas
ivansichfreitas@... Send Email
Nov 1, 2010
3:40 pm
... You mean tags, right? With a ctags database, put the cursor on the function name and hit control-] (use control-t to go back where you came from). Also,...
118644 itx
lingkun1988@... Send Email
Nov 1, 2010
4:09 pm
when i set list and then type four tab in a newline like \t\t&#92;t\t when i "set list" , i type backspce for juse one time this four tabs were delete , ...
118645 Adam
lespea@... Send Email
Nov 1, 2010
4:18 pm
... I'm pretty sure they depend on the font that you're using to display properly. Try using a few different ones and I think you'll get better results. ...
118646 statquant2
statquant@... Send Email
Nov 1, 2010
4:24 pm
Thanks Ivan Yes tags, the problem is that when I do <CTRL> ] I go on the .h file, and I don't know how to go the the cpp file itself... (where the function is ...
118647 statquant2
statquant@... Send Email
Nov 1, 2010
4:26 pm
Hi all, browsing for a nice theme I found this http://leetless.de/vim.html, I am intersted to understand how you can have this nice display of indentation you...
118648 H Xu
xusubsc@... Send Email
Nov 1, 2010
4:32 pm
I also want to know. ... -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For...
118649 Adam
lespea@... Send Email
Nov 1, 2010
4:39 pm
... You can change how tabs are displayed using the listchars field ( http://vim.wikia.com/wiki/Highlight_unwanted_spaces#Using_the_list_and_listchars_options ...
118650 AK
andrei.avk@... Send Email
Nov 1, 2010
4:43 pm
... You need to do something like this: set list listchars=tab:»·,trail:·,extends:$,nbsp:= trail is for trailing spaces, extends I don't remember what for,...
118651 Ivan S. Freitas
ivansichfreitas@... Send Email
Nov 1, 2010
4:50 pm
... You can use :tselsect to have a menu with the matches and/or use ... For more, see :help tag-matchlist ... -- ...
118652 statquant2
statquant@... Send Email
Nov 1, 2010
4:55 pm
Yes thanks almost there!!!! set list listchars=tab:\|-,trail:-,extends:$,nbsp:= is doing fine but it is missing to fill the lines without code Here is what I...
118653 Brian L. Matthews
blmatthews@... Send Email
Nov 1, 2010
4:56 pm
... It's the tab setting in his lcs (aka listchars) setting. I use: set listchars=eol:$,tab:>─,extends:>,precedes:<,nbsp:~$ I've also used: set...
118654 AK
andrei.avk@... Send Email
Nov 1, 2010
5:00 pm
... I don't think you can do that. He probably has some actual tabs in the "empty" lines. -ak -- You received this message from the "vim_use" maillist. Do not...
118655 Brian L. Matthews
blmatthews@... Send Email
Nov 1, 2010
5:01 pm
... Ok, this is what I get for doing things from memory and not testing. :-( You have to escape the |: set listchars=eol:$,tab:\|_,extends:>,precedes:<,nbsp:~$...
118656 statquant2
statquant@... Send Email
Nov 1, 2010
5:09 pm
Cool that solves it thanks a lot mate -- View this message in context: http://vim.1045645.n5.nabble.com/Go-to-function-definition-tp3245004p3245356.html Sent...
118657 statquant2
statquant@... Send Email
Nov 1, 2010
5:12 pm
not working Brian :( -- View this message in context: http://vim.1045645.n5.nabble.com/Nice-display-of-leading-tabs-tp3245279p3245364.html Sent from the Vim -...
118658 Tony Mechelynck
antoine.mechelynck@... Send Email
Nov 1, 2010
5:14 pm
... Console Vim or gvim? If gvim, it probably means your font doesn't have the glyphs for those characters: see...
118659 Tony Mechelynck
antoine.mechelynck@... Send Email
Nov 1, 2010
5:23 pm
... "Bash in vi mode" is not Vim, it's bash using some Vi-like key bindings (instead of its default Emacs-like key bindings) for command-line editing. IIUC,...
118660 aleCodd
33facebook@... Send Email
Nov 1, 2010
6:24 pm
thanks for the reply. so what is the equivalent for the following: ino ( ()<left> using the readline module? and if you could please be more precise, is the...
118661 Tony Mechelynck
antoine.mechelynck@... Send Email
Nov 1, 2010
7:06 pm
... I don't know. These are all bash questions, not Vim questions. Maybe a bash list or forum would be better than the Vim list. Have you read the bash...
118662 Tony Mechelynck
antoine.mechelynck@... Send Email
Nov 1, 2010
7:35 pm
... If you ":set list", and 'listchars&#39; is unset, every hard tab you type should appeat as ^I If you ":set list", and 'listchars&#39; has a properly set "tab:"...
Messages 118633 - 118662 of 137698   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help