vim_use [email protected] http://groups.google.com/group/vim_use?hl=en
Today's most active topics: * turning off showmatch - 10 new http://groups.google.com/group/vim_use/t/6ded0750eb40c768?hl=en * To many inter-character space when display Simplified Chinese (zh_CN) - 8 new http://groups.google.com/group/vim_use/t/99f26167835dbf05?hl=en * How to copy X text - 7 new http://groups.google.com/group/vim_use/t/479247fcefd1db92?hl=en * What makes the difference ? | if and dict - 6 new http://groups.google.com/group/vim_use/t/e6c45d1e749fc06b?hl=en * Edit file in filtered view - 5 new http://groups.google.com/group/vim_use/t/81ddb62e91be867e?hl=en Active Topics ------------- How to copy X text - 7 new -------------------------- Hello everyone. I'm gonna paste an example of what i want to do. Let's imagine that I have this code: <p id="already_registered"> And i wanna copy id=" already_registered" in a register, for example the register "P". How can i do that, and how can i paste it back later? Thanks in advance. - Tues, Dec 2 2008 2:35 am 7 messages , 5 authors http://groups.google.com/group/vim_use/t/479247fcefd1db92?hl=en plugin environment - 1 new -------------------------- Hi Michael: The default way is put everything {autoload/plugin/ftplugin} into a new directory, then set runtimepath+=dir in your .vimrc Howoever I even consider this to be too cumbersome. Have look at my new project: git:// mawercer.de/theonevimlib Marc - Tues, Dec 2 2008 3:56 am 1 message, 1 author http://groups.google.com/group/vim_use/t/71f21749d978d68c?hl=en To many inter-character space when display Simplified Chinese (zh_CN) - 8 new ----------------------------------------------------------------------------- No idea, mine just look ok. BTW you forgot to give details such as os being used, fonts and a screenshot. - Tues, Dec 2 2008 6:17 am 8 messages , 4 authors http://groups.google.com/group/vim_use/t/99f26167835dbf05?hl=en strange directory listing using netrw v134 - 3 new -------------------------------------------------- ...[snip] Hello! I made a directory and put the files you gave (less the leading "e"s) in it; netrw displayed the directory listing correctly. I'm using v135e; please try that ([link]). However, not having seen this problem before, I'm not expecting that v135e will - Tues, Dec 2 2008 6:21 am 3 messages , 2 authors http://groups.google.com/group/vim_use/t/6fba7d6c13d6472b?hl=en set ff=dos problems - 2 new --------------------------- For *NEW* files to default to dos format, all you'd need to do is (in your vimrc) :set ffs=dos,unix,mac or :set ffs=dos,unix instead of the default ffs= unix,dos. This will still detect existing files, and you will need to convert them if you created them as unix files. I actually used something similar to fix the opposite problem, as I do - Tues, Dec 2 2008 8:00 am 2 messages , 2 authors http://groups.google.com/group/vim_use/t/d19be706567e5743?hl=en How to sort the vimgrep result in quickfix? - 3 new --------------------------------------------------- On Dec 1, 8:56 am, Tony Mechelynck <[email protected]> wrote: ... If you do this, you can get the line-jumping behavior (sort of) using the gF, ctrl-w F, and ctrl-w gF commands. ... Actually (though I don't do it very often) I can see much potential use in brining up the quickfix window with all matches in a single - Tues, Dec 2 2008 8:31 am 3 messages , 3 authors http://groups.google.com/group/vim_use/t/8b730c3314bb42e4?hl=en wrong highliting in terminal on git-commit message - 3 new ---------------------------------------------------------- ...That is much better, thanks for the hint. Simon - Tues, Dec 2 2008 8:45 am 3 messages , 3 authors http://groups.google.com/group/vim_use/t/840b4ed6e3e3d1f4?hl=en Start NERDTree when starting Vim - 2 new ---------------------------------------- Hi, I'm trying to automatically start NERDTree when Vim is started. This worked fine: autocmd VimEnter * NERDTree But this leaves the NERDTree window active and I want the new window to be active so I can start working without < C-w>h. Can this be done? Another question regarding NERDTree: Is it possible that the NERDTree window - Tues, Dec 2 2008 12:10 pm 2 messages , 2 authors http://groups.google.com/group/vim_use/t/0190fd5ef369e0ba?hl=en turning off showmatch - 10 new ------------------------------ I want to turn off showmatch, but it doesn't seem to have any effect. I use ": set nosm" or ":set noshowmatch" to no avail. I searched for info about this on the forums and other places, but nothing came up. Finally, a google search found a document that showed someone else asked the same question in an IRC chat, but no one answered it. - Tues, Dec 2 2008 11:42 am 10 messages , 5 authors http://groups.google.com/group/vim_use/t/6ded0750eb40c768?hl=en Setting the status line to something specific... - 1 new -------------------------------------------------------- ...First, I'm intentionally Cc-ing this reply to the vim-list so other long- time Vim users will see it and maybe give a different or better reply. Everything about Vim (and I mean _everything_) is explained in its help. This may at times create a needle-and-haystack problem, but even to overcome this there are built-in tools. - Tues, Dec 2 2008 2:02 pm 1 message, 1 author http://groups.google.com/group/vim_use/t/da262ffa15afdf0a?hl=en Edit file in filtered view - 5 new ---------------------------------- Ok, Almost solved. With the following commands I can fold on the active search expression: ... Then with the following command I could get rid of the annoying text at each folding. Not as good as removing the line, but good enough :- ( ... Then I must make sure that every tiny thing is folded - Tues, Dec 2 2008 4:04 pm 5 messages , 4 authors http://groups.google.com/group/vim_use/t/81ddb62e91be867e?hl=en syntax highlight using :e command - 1 new ----------------------------------------- Hi, I use nesC's filetype detection, which works fine if I use "vi filename.nc " to edit a file. However, if I'm already in the vim environment, and use ":e filename.nc" to open a file, there is no syntax highlight. I searched a long time but cannot fix it. Could anybody help me? Thanks! By the way, I'm using vim 7.2 in Ubuntu 8.10, and the filetype.vim is: - Tues, Dec 2 2008 4:15 pm 1 message, 1 author http://groups.google.com/group/vim_use/t/ce493dcfbfea4068?hl=en What makes the difference ? | if and dict - 6 new ------------------------------------------------- if (1 >= 1) | let d = 1 | else | let d = "soo" | endif if (1 >= 1) | let d = 1 | else | let d = {'evalLazyClosedArgs': 1} | endif You can execute the first line in cmd line. The second fails. Why ? Marc Weber - Tues, Dec 2 2008 7:02 pm 6 messages , 3 authors http://groups.google.com/group/vim_use/t/e6c45d1e749fc06b?hl=en ANNOUNCE: TOVL - 2 new ---------------------- TOVL = the one vim lib. The lib is an very early stage and much has still to be done. But let me tell you what the main goals are and let me invite you taking action and help me expand and enhance it. If you don't have much time jump in and try: (You may want to remove ~/.theonevimlib_config afterwards) - Tues, Dec 2 2008 9:33 pm 2 messages , 2 authors http://groups.google.com/group/vim_use/t/f0736a45908950c4?hl=en How to yank the foldtext? - 3 new --------------------------------- As title, I can't select them and yank, my workaround is to use 2html then yank the foldtext in my browser. - Tues, Dec 2 2008 9:39 pm 3 messages , 2 authors http://groups.google.com/group/vim_use/t/e522cf4694188971?hl=en How to stop getting emails from this news group - 3 new ------------------------------------------------------- Dear all, I accidentally made a choice to receive email when I asked a question a long time ago, now I am keeping getting many many emails from unrelated threads from this news group. Please let me know how to stop this? Thanks! T - Tues, Dec 2 2008 11:07 pm 3 messages , 3 authors http://groups.google.com/group/vim_use/t/f21bc9a84e8cd7c1?hl=en vim and bash - 1 new -------------------- hi guys, in vim when i try to do something like this: ...i get==>> cannot execute shell /usr/local/bin/bash which is logical since my bash is at /bin/ bash. Is there anyway to point vim to the correct path? thanks in advance, nicolas - Wed, Dec 3 2008 12:09 am 1 message, 1 author http://groups.google.com/group/vim_use/t/335033578f84a147?hl=en ============================================================================== You received this message because you are subscribed to the Google Groups "vim_use" group. To post to this group, send email to [email protected] or visit http://groups.google.com/group/vim_use?hl=en To unsubscribe from this group, send email to [email protected] To change the way you get mail from this group, visit: http://groups.google.com/group/vim_use/subscribe?hl=en To report abuse, send email explaining the problem to [email protected] ============================================================================== Google Groups: http://groups.google.com/?hl=en --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~----------~----~----~----~------~----~------~--~---
