1
vote
2answers
32 views

!start not being found on vim command line

Windows command line has this command start that executes the argument with the default program. This is not an executable so I cannot just set it to path. If so, is there a way for me to run it from ...
0
votes
0answers
31 views

Why the same arabic string shows differently in Windows 7 and Ubuntu Linux? [closed]

The same arabic string, in windows 7 Notepad: in ubuntu linux vi: They are the same string in a file, but the display order is opposite, why?
0
votes
1answer
34 views

Do I need to manually set $VIMRUNTIME on my pc

For me I think the following is the case: $VIMRUNTIME='C:/Program Files (x86)/Vim/vim73' But if I look in the pc's environment variables (via Computer>Properties etc) I cannot see this path - ...
1
vote
4answers
121 views

How do I execute a Python Script using Vim

(very new) Vim newbie question I open gVim. I then using the File Menu and MenuItem Open to open a file pi.py which has the following tiny script: How do I execute this code using gVim? EDIT ...
0
votes
2answers
63 views

Permamently amend Vim font size

Warning: first-time Vim "user" I'd like to make the GUI font much bigger. It is installed on a modern windows 32-bit machine. I've used the Edit menu and found a good font using Select Font... ...
0
votes
1answer
53 views

After much reading, I still can't get Pathogen to load a plugin under Windows

For gVim 7.3.46 on Windows 7 64-bit fully updated (I run gVim 7.3.46 because it adds a reliable instance of "Edit with Vim" to the Windows context menu.) Despite having read an abundance of articles ...
0
votes
3answers
39 views

How to pass line/col number to gvim from grepwin? [duplicate]

I can configure grepwin to launch an external text editor using this: C:\Program Files\Notepad++\notepad++.exe -n%line% %path% What the above does is: Open Notepad++ Open the text file from ...
0
votes
1answer
32 views

Prevent Vim from Double Mapping

I want to append [''] to the end of the line while in Insert Mode, so I have this mapping: inoremap <C-[> <Esc>A['']<Esc>hi The problem is that Vim also maps A['']<Esc>hi to ...
1
vote
1answer
249 views

vim powerline in windows 7

I am trying to install VIM Powerline on window, I found a comment which supposed to fix how it looks in Windows, but encoding of the comment is broken by itself... The link to the blog post. I had ...
0
votes
0answers
88 views

Pass multiple parameters with open command

I am looking for ways to open multiple documents in a single application instance. For example, open multiple documents in a single, new gVim instance. I had found this code on here before, but it ...
1
vote
2answers
202 views

vim: execute shell command with variable and redirect output to new buffer

I want to call msbuild from the function below and redirect the output to a new buffer. My problem is that I need to use a variable, for the filename, and therefore cant use '!' (can I?), and when I ...
0
votes
1answer
39 views

weird space behavior in vim

I'm running the Win32 console executable (v73) in Windows XP in cmd.exe and when I insert a space things get weird. It kinda swallows a character and puts the space behind the cursor or something. ...
0
votes
1answer
32 views

Compiling in VIM across multiple Operating Systems

The problem I have is this: Open up vim on a windows machine, make something that compiles and save it. Move to a new workstation that is a Mac, open that same file in VIM, makes changes that are ...
2
votes
3answers
244 views

how to start a windows GUI program in cygwin?

I have gVim install in my Win7 and I am using cygwin a lot. When I am in cygwin bashell I want to enter "vim aaa.c" and then let my Windows program gVim open aaa.c for me. Would anyone tell me to do ...
0
votes
1answer
58 views

vim for epd python on windows

I have installed epd python distribution on my windows. Can anyone help me in setting up vim now? also, some help on basic quick tweaks on vim (syntax , color support etc.) would be helpful. need ...
1
vote
4answers
69 views

Place the cursor on next line with o <ESC> after putting something from clipboard in with "+p [closed]

Copy text not ending in a newline from somewhere to clipboard on windows with ctrl c and paste it into a text file (which is) being edited with vim (in console mode in cmd.exe) by "+p. E.g., an URL ...
0
votes
0answers
50 views

Wrong encoding in gvim

I have problem with encoding in gvim (screenshot). I added following lines in vimrc, but it didn't help (setting utf-8 also didn't help). set guifont=Monaco:h11 set encoding=cp1251 set ...
1
vote
1answer
56 views

Files are loaded as read only, although they are in fact writable [closed]

I guess my real question is how vim determines whether a file is writable or not under Windows. Something has changed on my system, and since a few hours ago, a number of files are suddenly appearing ...
5
votes
1answer
126 views

Where xterm Escape sequences like “Esc | 112 m” are defined?

While implementing xterm-256-colors in ConEmu I have discovered some unknown for me Escape sequences (used by Vim) like Esc | 7 m Esc | 15 m Esc | 112 m From Vim sources I realize that this codes ...
2
votes
1answer
159 views

How do I set up Vim to compile using Visual Studio 2010's C++ compiler?

I can compile from the command line by running vcvarsall.bat, then running cl.exe with my source file as the only argument. The problem is that just running cl.exe without first setting up the ...
0
votes
1answer
124 views

Use vim in a 64bits environment

I installed windows8 on my system. Then I installed VIM in program files (x86). I noted that I have to run VIM always as administrator to be enable to modify files. I resolved this right clicking on ...
1
vote
0answers
68 views

vim clang_complete VIo4231.tmp missing

I installed the clang_complete plugin for vim and whenever the code completion has to come, it gives me this error(when setting g:clang_complete_copen = 1, so i can see the error) Error detected ...
2
votes
1answer
143 views

Three questions about Vim

I am new to the so-called “best text editor” Vim, and I’m struggling to become familiar with the operations it can perform. Some of the problems I encounter are really odd; I’m hoping that someone can ...
2
votes
3answers
218 views

Keyboard-only column block selection in GVim Win32, or why does Ctrl-Q not emulate Ctrl-V when mswin.vim is included?

I want to be able to select columnar blocks using only the keyboard when I use GVim on Windows, but I do not seem to be able to do so when using gvim (7.2) on Windows XP. Edit: For convenience, it is ...
2
votes
1answer
130 views

vim-foreplay is really slow with Ruby 1.9 but fast with Ruby 1.8 on Windows

I noticed that vim-foreplay on Windows is really slow when doing things that involve sending code to nrepl (a Java process for those that don't know) and I think it does that with Ruby. I tried it ...
2
votes
1answer
135 views

lein repl makes my Clojure source files readonly in Vim on Windows

I don't know where the problem lies, but when I do lein repl or lein vimclojure in a project, and then open a Clojure source file from the same project in Vim, it's readonly, like it is being used or ...
2
votes
1answer
100 views

Mapping alt keys in Vim on Windows

I have a function that I'd like to map to Alt+o in gVim on Windows (7.3.46 32 bit Bram@KIBAALE Big version on Win7-x64) and it's... not working. My .vimrc has a line that reads: nnoremap <A-o> ...
1
vote
3answers
173 views

Error with vim pathogen inside cygwin

I have recently installed cygwin (as I am confined to a Windows OS) and would like to utilize Vim within it. Everything is installed and I can access vim readily and can modify .vimrc and the like. ...
1
vote
2answers
439 views

Setting Cygwin shell path on Vim for Windows

I am attempting to set up Vim on Windows, using Git bash (Cygwin) as the shell environment. I'm getting an error about temporary files which I'm 99% sure is related to the fact that the shell can't be ...
0
votes
3answers
259 views

How can I get gVim (Windows) to use “home\.vim” for my plugins?

I have a Desktop running Windows 7, and a Macbook Pro running Mountain Lion. I use gVim and MacVim respectively. I like to keep my plugins and settings synced between the machine, so I store them in ...
0
votes
1answer
52 views

Opening a file in VIM when not on %homepath% is not working

I'm new to using Vim and have been tinkering it for a day or 2 now. Now, I'm filling up and customizing my vimrc file. I'm an avid Windows Powershell user and I prefer it more over the old command ...
1
vote
4answers
558 views

Using VIM for Python IDE in Windows?

I am turning to Python from .NET world. And Visual Studio was something a great tool i used. In python world we do have basic IDLE and another one is VIM. I have seen that a lot of developers have ...
0
votes
2answers
169 views

Use CAPS LOCK as Vim mode toggle key in Windows

A lot of people have asked and written about how to map Caps Lock to Esc or Control, but I'd like to use the Caps Lock key as a toggle between insert mode and normal mode, and I haven't found anything ...
3
votes
3answers
103 views

saving entire file in VIM

I have a very large CSV file, over 2.5GB, that, when importing into SQL Server 2005, gives an error message "Column delimiter not found" on a specific line (82,449). The issue is with double quotes ...
0
votes
0answers
132 views

python-mode plugin breaks gVim

I had a perfectly running customized gVim copy on my Windows XP machine. But for an unknown reason, the program isn't running now, whenever I lunch it, it immediately closes the process. After trying ...
1
vote
0answers
202 views

E40: Can't open errorfile C:\DOCUME~1\[…] on windows

I'm trying to use pylint.vim on windows. I have https://github.com/orenhe/pylint.vim version in C:\Program Files\Vim\vimfiles\compiler direcory. I added: autocmd FileType python compiler pylint To ...
1
vote
1answer
97 views

Vim. Troubles with encoding on file saved in windows

I have ��� chars after each time I save file in windows for some folders. And for some other folders - all is fine. I can't find difference between folders where everything is fine and folders where ...
3
votes
1answer
196 views

VIM : How to map command according to buffer type?

I know my title is not that descriptive/clear so let me explain. Yesterday I can across Vimgrep and copen so I added the below line in .vimrc nnoremap <silent> ,/ :execute 'vimgrep /'.@/.'/g ...
1
vote
2answers
108 views

How to tell if vim is being run in command line vs. powershell

I would like to make a function which does the following if (vim is running in powershell) call system("only works in powershell") else echo "Skipping powershell command" Does anyone know ...
0
votes
1answer
191 views

Vim autocmd FileType not being evaluated on startup

I have written autocmd! FileType tex set nonumber in my _vimrc (running Windows), but when I open up my test.tex I still see line numbers. If, after opening the file, I type set filetype=tex then ...
2
votes
1answer
41 views

Hiding Vim .ext~ files in Windows

When i use vim on windows, i realize that vim saves the file and closing the vim window deletes a .ext.swp file amd a .ext~ file How do i disable or delete these files as the duplicates are causing ...
3
votes
2answers
484 views

Are the official gVim Windows binaries precompiled to work with Python 3?

I downloaded gVim73_46.exe from the official VIM.org website and installed it with its full components, and I develop using Python 3.2 (but would settle for 3.1 if it's more likely to work with VIM). ...
1
vote
3answers
201 views

Beginner questions about vim

Question #1: if I have a C++ code like this #include <iostream> using namesapce std; int main() { int a; cin >> a; cout << a << endl; return 0; } I don't know if ...
2
votes
2answers
77 views

Can I use environment variables in vim keyboard mappings?

There's probably a better way to do this, but this is what I'm trying to do. I have several html files for which I need to update meta tags prior to updating the content. I'm trying to automate this ...
1
vote
2answers
250 views

Moving to Windows from Ubuntu — get Vim+Python workflow back

I have been using Vim on linux for almost a year now, and I've grown to appreciate the power of doing so. I code in Python most of the time, so I've made some configuration changes to vimrc to make it ...
1
vote
1answer
238 views

Vim (7.3.3 Windows 64bit): Add ^M to end of line if there is none (ff=unix)

I have some 100,000+ files with partially mangled data, mixed text+binary files (a single file of jpg image data with http headers), where some header fields have dos style ^M^J line termination, and ...
3
votes
2answers
309 views

vim temporary files with native vim on windows

When running a native compilation of gVim under Win7 I have the following in my vimrc: if has ("win32") let $TMP="C:/tmp" setlocal equalprg=tidy\ --output-xhtml\ y\ -utf8\ --wrap-attributes\ 1\ ...
6
votes
3answers
121 views

Can I version a path in git whose name is operating system dependent

I wish to store my Mac, Windows and Linux vim configuration files in git. On *nix systems, your vim configuration files go in ${HOME}/.vim but for the Windows binary, the same directory is named ...
2
votes
2answers
1k views

Installing pathogen vim plugin on Windows

I was going to install the pathogen plugin in GVIM for windows but the instructions say to install in the \vimfiles\autoload folder which I don't have. How would I install pathogen?
59
votes
18answers
14k views

Differences between Emacs and Vim

Without getting into a religious argument about why one is better than the other, what are the practical differences between Emacs and Vim? I'm looking to learn one or the other, but I don't see a ...

1 2 3 4