active questions tagged vi - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T18:39:16Z http://stackoverflow.com/feeds/tag/vi http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/54104/is-there-any-way-to-enable-code-completion-for-perl-in-vim 12 Is there any way to enable code completion for Perl in vim? Edward Tanguay 2008-09-10T13:57:07Z 2009-11-27T19:39:40Z <p>Surprisingly as you get good at vim, you can code even faster than standard IDEs such as Eclipse. But one thing I really miss is code completion, especially for long variable names and functions.</p> <p>Is there any way to enable code completion for Perl in vim?</p> http://stackoverflow.com/questions/726894/what-are-the-dark-corners-of-vim-your-mom-never-told-you-about 108 What are the dark corners of Vim your mom never told you about? Sasha 2009-04-07T17:57:30Z 2009-11-24T20:21:01Z <p>There is a plethora of questions where people talk about common tricks, notably <a href="http://stackoverflow.com/questions/563616/vimctags-tips-and-tricks">this one</a>. </p> <p>However, I don't refer to commonly used shortcuts that a noob would find cool. I am talking about a seasoned unix user (be she/he a developer, admin, both, etc), who thinks (s)he knows something 99% of us never heard or dreamed about. Something that not only makes his/her work easier, but also is COOL and <strong>hackish</strong>. After all, <em>vim</em> resides in the most dark-corner-rich OS in the world, thus it should have intricacies that only a few privileged know about and want to share with us.</p> http://stackoverflow.com/questions/1768598/vi-editor-query 1 vi editor query john 2009-11-20T05:58:26Z 2009-11-20T06:43:45Z <p>I use vi quite often to edit files.<br> Usually I need the file to appear on screen with line numbers.<br> For this I do <code>set nu</code> in edit mode. What a drag! Can I automate this? Is there any way where vi will directly open the file with line numbers visible immediately?<br> If so, are there any other tips that will make my experience with vi more efficient?</p> <p>FYI, I don't have Vim.</p> http://stackoverflow.com/questions/1766067/what-is-the-most-useable-vi-vim-plugin-for-eclipse 4 What is the most useable VI/VIM plugin for eclipse? DanielHonig 2009-11-19T19:52:02Z 2009-11-19T20:14:58Z <p>I used to be a huge fan of Intelli-J and there is a fantastic VI plugin for Idea. Now I'm shifting to the Spring Source Tool Suite for my primary IDE and need to find a VI plugin that will allow me to work just as effectively.</p> <p>What plugin are people using?</p> http://stackoverflow.com/questions/1766065/in-gvim-is-there-a-way-to-display-a-macro-list-similar-to-displaying-your-mappin 1 In gVim, is there a way to display a macro list similar to displaying your mappings? Jason Down 2009-11-19T19:51:34Z 2009-11-19T19:56:37Z <p>I know there is a way to list mappings via :map (or :imap, :cmap etc.), but I can't find a way to list macros I have stored in my vimrc file (as in let @a = 'blahblah').</p> <p>Is there a way to do this without having to manually looking inside it (via :split [myvimrcfile] or whatever way)?</p> <p>Also, if it is possible, is there a way to attach some sort of documentation that would display with the macro to explain what it is for? I have a handful that I use quite a bit, but about 6 weeks apart. It would be nice to just quickly list them along with a comment that tells me what the macro does (or even just a name so I make sure I use the right one).</p> <p>Thanks</p> http://stackoverflow.com/questions/1301352/python-ide-on-linux-console 0 Python IDE on Linux Console Henrik P. Hessel 2009-08-19T17:12:36Z 2009-11-15T07:11:16Z <p>This may sound strange, but I need a better way to build python scripts than opening a file with nano/vi, change something, quit the editor, and type in <code>python script.py</code>, over and over again.</p> <p>I need to build the script on a webserver without any gui. Any ideas how can I improve my workflow?</p> http://stackoverflow.com/questions/1708623/opening-files-in-the-same-folder-as-the-current-file-in-vim 8 Opening files in the same folder as the current file, in vim cloudhead 2009-11-10T15:04:25Z 2009-11-11T19:07:32Z <p>In vim, when I have a buffer open, I often need to load another file in the same directory that file is in, but since I don't usually <code>cd</code> into it, the <code>pwd</code> is a parent folder, so I have to retype the path every time. Is there a shortcut for this? or a way to change the pwd to the directory the file is in?</p> <p>example:</p> <pre><code>cd /src vi lib/foo/file.js </code></pre> <p><em>lib/foo</em> has two files: <code>file.js</code> and <code>file2.js</code></p> <p>in vi:</p> <pre><code>:e file2.js # doesn't work </code></pre> http://stackoverflow.com/questions/1656166/how-to-make-a-global-vimrc 1 How to make a global ~/.vimrc? [closed] alex 2009-11-01T02:06:38Z 2009-11-08T04:10:08Z <p>Right now, I make everyone do ~/.vimrc and put their settings there.</p> <p>How can I make a global, default .vimrc for new users?</p> <p>Edit: I am using CentOS</p> http://stackoverflow.com/questions/1680390/code-completion-in-vi-editor 2 code completion in vi editor iamrohitbanga 2009-11-05T12:55:10Z 2009-11-07T11:14:18Z <p>is there an autocomplete feature for vi. ctrl p looks for keywords already used in the document. but suppose i want a.funcname to automatically show members of object a. is it possible with vi.</p> http://stackoverflow.com/questions/1680944/vim-regexps-from-the-perls-point-of-view-which-special-characters-to-escape-wit 0 vim regexps from the perl's point of view: which special characters to escape with backslash igorp1024 2009-11-05T14:35:04Z 2009-11-06T08:07:11Z <p>Imagine, we have to construct a regexp in vi/vim. Which special characters we have to escape with backslash? </p> <p>By special characters I mean the following chars: {}|()-[]+*.^$?</p> <p>Seems like we have to escape: {|()+? </p> <p>And leave as is: }^$*.[]-</p> <p>Thanks.</p> <p>p.s. AFAIK, we have no '?' character in vi/vim but '=' instead which should be also escaped by backslash.</p> http://stackoverflow.com/questions/1675688/make-vim-show-all-white-spaces-as-a-character 2 Make Vim show ALL white spaces as a character Matt 2009-11-04T18:17:33Z 2009-11-04T20:50:51Z <p>I can't find a way to make Vim show all white spaces as a character. All I found was about tabs, trailing spaces etc.</p> http://stackoverflow.com/questions/56052/best-way-to-insert-timestamp-in-vim 5 Best way to insert timestamp in Vim? Edward Tanguay 2008-09-11T08:41:56Z 2009-11-03T19:45:23Z <p>EditPad Lite has a nice feature (CTRL-E, CTRL-I) which inserts a time stamp e.g. "2008-09-11 10:34:53" into your code.</p> <p>What is the best way to get this functionality in Vim?</p> <p>(I am using Vim 6.1 on a Linux server via SSH. In the current situation a number of us share a login so I don't want to create abbreviations in the home directory if there is another built-in way to get a timestamp.)</p> http://stackoverflow.com/questions/605263/tips-for-using-vim-over-a-slow-connection 6 Tips for using vim over a slow connection? Paul Wicks 2009-03-03T05:55:33Z 2009-11-03T15:17:13Z <p>I'm using vim over a slow connection and it is a little painful. Is there anything I can do in vim to alleviate the pain?</p> http://stackoverflow.com/questions/1662799/whats-the-syntax-for-telling-vi-to-read-write-a-source-file-with-soft-tabs-and-a 1 what's the syntax for telling VI to read/write a source file with soft-tabs and a specified indentation? Ross Rogers 2009-11-02T18:12:42Z 2009-11-02T19:56:32Z <p>Someplace I saw a snippet of code which told vi to use soft tabs and set the size of a tab. If you put this snippet at the bottom of a source file, then vi would magically use those settings for that file.</p> <p>What is the syntax and rules for including that snippet in a source file? Can emacs be made to use these settings as well?</p> http://stackoverflow.com/questions/1636771/post-your-vim-config 4 Post your Vim config. alex 2009-10-28T11:48:58Z 2009-11-01T02:10:57Z <p>Please share and vote for the best!</p> <p><strong>Please do not close this. This is a subjective question, but is programming related and can be beneficial to people.</strong></p> http://stackoverflow.com/questions/1633335/highlight-text-ranges-in-vim 1 Highlight text ranges in Vim Vereb 2009-10-27T20:03:39Z 2009-10-28T16:21:33Z <p>Is it possible to mark a range of text in Vim and change the highlight color of it (to red) than select another range of text and change that color (to green) keeping the previous highlight and so on?</p> http://stackoverflow.com/questions/1631069/moving-a-block-of-code-by-a-tabspace 1 Moving a block of code by a tabspace VNarasimhaM 2009-10-27T14:08:59Z 2009-10-27T14:39:09Z <p>I am currently visually selecting the code and typing ">" which moves the code by 2 tabs. But I only want to move it by one tab.</p> <p>Is there any alternate command in VIM to move the code by a tabspace. Ideally I would like to put a marker and then move the whole code block by a tabspace. Thanks</p> http://stackoverflow.com/questions/1613763/using-vi-how-to-obtain-a-number-of-time-a-word-or-pattern-occur-in-the-file 2 Using vi how to obtain a number of time a word or pattern occur in the file Andrei 2009-10-23T14:15:50Z 2009-10-25T11:19:56Z <p>How do calculate the number from inside the vim?</p> http://stackoverflow.com/questions/1617548/how-can-i-search-for-3-strings-at-a-time-in-vi-editor 2 how can i search for 3 strings at a time in vi editor john 2009-10-24T10:01:37Z 2009-10-24T10:10:47Z <p>Hi,</p> <p>i was wondering how could we do it.i.e., search for 3 strings at a time in vi like i do <code>:/xyz</code> in command mode. how could i add 2 more strings so that the cursor will stop at a string which ever is found first among the three and if we press <code>n</code> it will stop at the string that is found second among the three.I suppose this would be very helpful in real time.</p> http://stackoverflow.com/questions/1606646/how-to-change-file-permission-from-within-vi 2 how to change file permission from within VI Andrei 2009-10-22T11:41:00Z 2009-10-22T11:56:39Z <p>I sometimes open a read-only file in vi, forgetting to do chmod +w before opening it. Is there way to change the file from within the vi?</p> <p>something like that !r chmod +w filename ?</p> <p>is there a shortcut to refer to the currently open file without spelling it 50 letter name?</p> <p>thanks</p> http://stackoverflow.com/questions/1577347/best-tool-in-unix-for-viewing-large-files 1 Best tool in unix for viewing large files unknown (yahoo) 2009-10-16T10:38:41Z 2009-10-16T11:01:07Z <p>I am a novice in unix. i am facing a problem in viewing big log files in unix using Vi tool. could you please suggest the best tool for fast viewing of big files on unix. Request you to post your own ways of viewing the big files on unix. appreciate your help:)</p> http://stackoverflow.com/questions/485120/will-emacs-make-me-a-better-programmer 28 Will emacs make me a better programmer? Juliet 2009-01-27T20:38:55Z 2009-10-15T04:44:52Z <p>Steve Yegge wrote <a href="http://steve.yegge.googlepages.com/tour-de-babel" rel="nofollow">a comment on his blog</a>:</p> <blockquote> <p>All of the greatest engineers in the world use Emacs. The world-changer types. Not the great gal in the cube next to you. Not Fred, the amazing guy down the hall. I'm talking about the greatest software developers of our profession, the ones who changed the face of the industry. The James Goslings, the Donald Knuths, the Paul Grahams, the Jamie Zawinskis, the Eric Bensons. Real engineers use Emacs. You have to be way smart to use it well, and it makes you incredibly powerful if you can master it. Go look over Paul Nordstrom's shoulder while he works sometime, if you don't believe me. It's a real eye-opener for someone who's used Visual Blub .NET-like IDEs their whole career. </p> <p>Emacs is the 100-year editor.</p> </blockquote> <p>The last time I used a text editor for writing code was back when I was still writing HTML in Notepad about 1000 years ago. Since then, I've been more or less IDE dependent, having used Visual Studio, NetBeans, IntelliJ, Borland/Codegear Studio, and Eclipse for my entire career.</p> <p>For what its worth, I <em>have</em> tried emacs, and my experience was a frustrating one because of its complete lack of out-of-the-box discoverable features. (Apparently there's an emacs command for discovering other emacs commands, which I couldn't find by the way -- its like living your own cruel Zen-like joke.) I tried to make myself like the program for a good month, but eventually decided that I'd rather have drag-and-drop GUI designers, Intellisense, and interactive debugging instead.</p> <p>Its hard to seperate fact from fanboyism, so I'm not willing to take Yegge's comments at face value just yet.</p> <p><strong>Is there a measurable difference in skill, productivity, or programming enjoyment between people who depend on IDEs and those who don't, or is it all just fanboyism?</strong></p> http://stackoverflow.com/questions/1562928/mapping-of-ctrl-characters 1 Mapping of <ctrl-#> characters Wongs 2009-10-13T21:14:32Z 2009-10-13T23:30:28Z <p>I've been trying to map certain sequences to parenthesis/bracket completion without any success. I've been trying the following commands to map certain control sequences but they don't seem to work. Does anyone know what I'm doing wrong here? </p> <p>:imap &lt;ctrl-9&gt; ( )hha <br/> :imap &lt;ctrl-(&gt; ( )hha <br/></p> http://stackoverflow.com/questions/1270217/how-to-get-transparent-background-in-vi-editor 0 How to get Transparent Background in VI Editor? blog 2009-08-13T05:43:50Z 2009-10-13T13:31:19Z <p>I am using gvim in Windows and novice to it. </p> <p>I want to have a transparent background for my VI (in Windows) , like console which creates a transparent command prompt.</p> http://stackoverflow.com/questions/54255/in-vim-is-there-a-way-to-delete-without-putting-text-in-the-register 20 In vim is there a way to delete without putting text in the register? Edward Tanguay 2008-09-10T14:46:35Z 2009-10-12T17:23:41Z <p>Using vim I often want to replace a block of code with a block that I just yanked. But when I delete the block of code that is to be replaced, that block itself goes into the register which erases the block I just yanked. So I've got in the habit of yanking, then inserting, then deleting what I didn't want, but with large blocks of code this gets messy trying to keep the inserted block and the block to delete separate.</p> <p>So what is the slickest and quickest way to replace text in vim?</p> <ul> <li>is there a way to delete text without putting it into the register?</li> <li>is there a way to say e.g. "replace next word" or "replace up to next paragraph"</li> <li>or is the best way to somehow use the multi-register feature?</li> </ul> http://stackoverflow.com/questions/1539816/make-gvim-7-2-background-black 1 make gvim 7.2 background black Andrei 2009-10-08T19:04:43Z 2009-10-11T20:34:57Z <p>I am sick and tired of the white background when I edit c/c++/etc code. I want the black backround. that is what I currently have in my .vimrc file in regard to coloring. Please help me change it:</p> <pre><code>if !has('gui_running') set t_Co=8 t_md= highlight NORMAL ctermbg=black ctermfg=white </code></pre> <p>thanks</p> http://stackoverflow.com/questions/396545/popular-vim-alternatives 1 Popular Vim alternatives? Michael 2008-12-28T19:18:30Z 2009-10-09T10:58:00Z <p>Are there any Vi clones that are still in wide use today (besides Viper mode in Emacs ;)), other than Vim? If so, what are the pros/cons to using it instead of Vim?</p> http://stackoverflow.com/questions/1509855/how-to-move-to-the-next-enclosing-brackets-in-vi 3 how to move to the next enclosing brackets in VI VNarasimhaM 2009-10-02T14:26:53Z 2009-10-08T15:33:26Z <p>Are there any shortcuts to move to the next enclosing brackets. For ex:</p> <pre><code>int func() { if(true) {//this point for(int i=0;i&lt;10;i++) {//need to jump from here to //blah blah blah } } } </code></pre> <p>I can move to the beginning of a function using <code>[[</code> but not sure how to move to the next enclosing brackets. Thanks for any info...</p> http://stackoverflow.com/questions/290465/vim-how-to-paste-over-without-overwriting-register 7 Vim: how to paste over without overwriting register Starr Horne 2008-11-14T15:40:57Z 2009-10-07T10:15:16Z <p>Does anyone know of a way that I can paste over a visually selected area without having the selection placed in the default register?</p> <p>I know I can solve the problem by always pasting from an expicit register. But it's a pain in the neck to type "xp instead of just p</p> <p>Thanks</p> http://stackoverflow.com/questions/1522150/close-window-hook-in-vim-or-automatically-close-window-when-other-window-closes 0 close-window-hook in vim, or automatically close window when other window closes 0x89 2009-10-05T20:15:43Z 2009-10-06T19:35:18Z <p>Is there something like a close-window-hook in vim/vimscript, so that I can call a function every time a window is closed?</p> <p>I want to use it for the following scenario: I use an extra scratch window to display information about the file, and when I close the file I want the scratch window to be closed automatically so that vim exits.</p> <p>If you have any ideas how to achieve that without a hook that will be just as fine.</p> <p>edit: I know about <code>:qa[ll]</code>, but I am lazy and only want to type <code>:q</code> or <code>ZZ</code>.</p> <p>edit2.71828183: I accepted the autocommand answer as it was closest to the original question, but found another solution in using a preview window instead of a split window. A preview window is automatically closed when the last "normal" window is closed..</p>