vim_use
[email protected]

http://groups.google.com/group/vim_use?hl=en

Today's most active topics:

* Can I prevent from quiting gvim when click the close bottom on title bar? - 
15 new
  http://groups.google.com/group/vim_use/t/4abdfd37837f50a7?hl=en
* How to disable swapfile when editing a directory? - 12 new
  http://groups.google.com/group/vim_use/t/4862bca278794a6b?hl=en
* How to get the charactor under cursor in vimscript? - 9 new
  http://groups.google.com/group/vim_use/t/071088a935400e74?hl=en
* Hello, how to do? - 9 new
  http://groups.google.com/group/vim_use/t/3ef43d0efc63bd61?hl=en
* bug? vim for freebsd doesn't know the cmd that set after login. - 8 new
  http://groups.google.com/group/vim_use/t/26ddf2264a483a45?hl=en




Active Topics
-------------

How to disable swapfile when editing a directory? - 12 new
----------------------------------------------------------
...Here generates _.swo and _.swp, I'm sure the dir hasn't these files before 
I edit it. btw. my gvim version is official 7.2 for windows. - Mon, Nov 24 
2008 1:57 am 
12 messages , 4 authors
http://groups.google.com/group/vim_use/t/4862bca278794a6b?hl=en


How to get the charactor under cursor in vimscript? - 9 new
-----------------------------------------------------------
I want to get the charactor under cursor(<cchar>?) then run something like: 
fun myfun() !cmd <cchar> endfun How to do it? - Mon, Nov 24 2008 2:15 am 
9 messages , 4 authors
http://groups.google.com/group/vim_use/t/071088a935400e74?hl=en


Can I prevent from quiting gvim when click the close bottom on title bar? - 15
new
---
...You seem to have written similar request for GNU Emacs developers two days 
ago: [link] It makes me wonder what other applications you would like to 
prevent others from touching. :-) I don't need the answer, but from my 
experience applications don't usually provide such features. The desktop - Mon,
 Nov 24 2008 2:15 am 
15 messages , 7 authors
http://groups.google.com/group/vim_use/t/4abdfd37837f50a7?hl=en


script for configuring features? - 1 new
----------------------------------------
Has someone already written a nice script which can be used to configure 
multiple scripts? It should have these features: - easy to use thus - use sane
defaults - support kind of introspection thus you should be able to configure 
it without looking at all settings (eg by showing all items which - Mon, Nov 
24 2008 3:08 am 
1 message, 1 author
http://groups.google.com/group/vim_use/t/f1af35e0323144d5?hl=en


Cursor become invisible. - 2 new
--------------------------------
...That's interesting. On my Fedora 7 box, leaving guifont empty prevents the 
problem. But perhaps it's related to the particular font being used, such that
my default font is OK but Alien's font still has the problem. I didn't try all
possible fonts on my box to see if that's related. Still, there must be more 
to it than that because I like to - Mon, Nov 24 2008 4:59 am 
2 messages , 2 authors
http://groups.google.com/group/vim_use/t/3a735a0e2c526c6b?hl=en


netrw cuts off first letter(s) of file - 1 new
----------------------------------------------
...It'd help to give an example. And, "is sometimes missing the first letter 
of the file" is a bit ambiguous. Are you talking about the "thin" display (as 
opposed to wide, or tree, or long)? All filenames are missing their first 
letter? Or just some specific file -- and what should that file appear as (am -
 Mon, Nov 24 2008 6:15 am 
1 message, 1 author
http://groups.google.com/group/vim_use/t/2fe91677ce6233db?hl=en


help with help, comments, and interactions with Unix (the :! construction) - 4
new
---
The answers so far are very good and should help you a lot, but to expand some
on one of your questions: ... There are many contexts in which a comment 
marker is passed to the command. Incidentally, all of these commands are also 
commands which you cannot string together with a | character. See :help :bar 
for the - Mon, Nov 24 2008 6:57 am 
4 messages , 4 authors
http://groups.google.com/group/vim_use/t/8af4db0b48e8c214?hl=en


How to list all occurrence of a identifier - 2 new
--------------------------------------------------
Hi, ...The fastest way to search across a large number of C files is to use 
GNU id-utils. [link] With GNU id-utils, it takes few seconds to search across 
several thousand source files. You can use the following Vim plugin with GNU 
id-utils: [link] - Mon, Nov 24 2008 10:33 am 
2 messages , 1 author
http://groups.google.com/group/vim_use/t/c7768e7e9faecfb0?hl=en


Hello, how to do? - 9 new
-------------------------
Hello, friends, I have a huge file like: dbv file=/sja7/appl/oracle/ship/sy 
stem01.dbf feedback=100 logfile=./.log blocksize=8192 dbv file=/sja8/appl/
oracle/ship/un dotbs.dbf feedback=100 logfile=./.log blocksize=8192 dbv file=/
sja7/appl/oracle/ship/to ols.dbf feedback=100 logfile=./.log blocksize=8192 - 
Mon, Nov 24 2008 10:55 am 
9 messages , 5 authors
http://groups.google.com/group/vim_use/t/3ef43d0efc63bd61?hl=en


bug? vim for freebsd doesn't know the cmd that set after login. - 8 new
-----------------------------------------------------------------------
Sometimes I add a path to $PATH after login (i.e. after source the .cshrc), 
and I'm sure I can run that path's command in console, but when I run vim and 
use :!cmd, then vim will prompt the command not found. I have to add that path
to $PATH in .cshrc. OS is freebsd 7-stable. Shell is tcsh. - Mon, Nov 24 2008 
3:39 pm 
8 messages , 3 authors
http://groups.google.com/group/vim_use/t/26ddf2264a483a45?hl=en


Bug: :!cmd<tab> doesn't auto complete cmd name when on windows - 1 new
----------------------------------------------------------------------
As title, run a command by :!cmd supports auto completion when on unix but 
windows. Is it a feature or a bug? - Mon, Nov 24 2008 3:33 pm 
1 message, 1 author
http://groups.google.com/group/vim_use/t/90a903f7343b8317?hl=en


help on %s feature in gvim - 4 new
----------------------------------
In a C Source file, there are a bunch of variables as tv[1] tv[2] .... tv[234]
I want to replace them such that first '[' is replaced by '_' and second one 
deleted. So file has replaced new names as tv_1 tv_2 ... tv_234 can somebody 
help me with this? %s/tv\[/tv_/g replaces he first but how to distinguish the 
second from other similar - Mon, Nov 24 2008 8:34 pm 
4 messages , 3 authors
http://groups.google.com/group/vim_use/t/66d4315dd2be201d?hl=en


Get grep results like ctrl-] - 1 new
------------------------------------
On Nov 23, 12:25 am, "Yegappan Lakshmanan" <[email protected]> wrote: ... 
Thanks, it looks like the Grep Vim plugin is what I was looking for. One 
little problem though, I'm used to type :E to get the file explorer, and now 
this command is ambiguous, matches Egrep also. I only use Grep, not Egrep, 
Fgrep or Agrep, so is there a way to - Mon, Nov 24 2008 11:21 pm 
1 message, 1 author
http://groups.google.com/group/vim_use/t/a58312edc529c2c0?hl=en


how to set different color schemes for GVIM & console VIM - 4 new
-----------------------------------------------------------------
Hello, The same color scheme for GUI vim & console vim looks quite different, 
and I found different color scheme best suited for each of them. Is it 
possible to set different color scheme for GUI and Console VIM? - Tues, Nov 25
2008 12:08 am 
4 messages , 4 authors
http://groups.google.com/group/vim_use/t/3e3b06aeae084011?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
-~----------~----~----~----~------~----~------~--~---

Reply via email to