Vim is a free and open-source modal text editor available for most major platforms. It allows high efficiency in many text editing tasks but has a steep learning curve. To learn the basics, try ":help vimtutor".
1
vote
2answers
19 views
Java System.out.print();, behaves different on Eclipse than on Eclim
Im trying to learn some Java, I am using Eclim and after following a tutorial I found that this does not work on Eclim + vim:
class variables{
public static void main(String args[]){
...
0
votes
1answer
29 views
Is there any efficient ways to locate, open files in Vim? [duplicate]
I use Nerdtree, it is convenient. But when there is too many files in directories, it is little inconvenient to locate files and open it.
Is there some efficient way to locate, open files in Vim?
0
votes
0answers
13 views
render bengali(and possibly other indic) font in vim
I am trying to write in bengali(http://en.wikipedia.org/wiki/Bengali_alphabet)
using gvim. The font rendering is not correct.
I have tried gedit, and rendering is correct there.
To compare, see this ...
0
votes
1answer
27 views
Syntax highlight javascript templates within <script type='text/html'> elements
In my Ruby on Rails templates I write underscore templates within <script type='text/html'> elements.
I'm using rails.vim and other plugins, but syntax highlighting and identation rules don't ...
0
votes
1answer
28 views
Strange changed permissions after creating new mac user (vim, idl, etc…)
I had an account name bally and had to create a new account called jbally because there was something wrong with bally.
This fixed the original issue which is not important but now when I go to save ...
1
vote
0answers
21 views
Vimscript: How can I implement interactive method argument autocompletion?
I am writing a plugin for vim in which I am calling a ruby script.
The script finds the arguments for the method and I have managed to display them in the popup using completefunc. Here is how it ...
2
votes
3answers
50 views
Change last word on line in VIM
I'm using VIM to edit C code, and I enjoy using c<movement> to quickly change parts of my file. In particular, I find things like c2W useful to "change two space-delimited words."
But ...
1
vote
1answer
39 views
Vim change colorscheme from commandline
I want vim/macvim to override the current theme from the commandline.
Something like:
vim -colorscheme=solarized
Is there any way to tell vim/macvim to override the current .vimrc colorscheme ...
0
votes
1answer
45 views
Vim - unable to map multiple keys
(it's a new topic whose starting point is this question)
To make it short, I think I can't make mapping with 2-keys combination in vim (<key1-key2>, or <A-j> for example). One-key mapping ...
1
vote
1answer
35 views
Java (Eclim + Vim) “system.out.print” not working
I am new to java programming, and today while messing with eclim and vim, I discovered that the System.out.println(); funtion is not working.
class apples{
public static void main(String args[]){
...
0
votes
0answers
50 views
why Vim open a 1784KB size file fast than Notepad in Windows? [closed]
when I try to open a file on Windows use Vim, it seem very fast then notepad,what different mechanism between vim and notepad?
0
votes
1answer
31 views
langmap in vim seems to be recursive
I have gcc shortcut mapped in normal mode (standard tComment shortcut). If I use
set langmap=ij;gc
typing ijj works as expected. But if I use
set langmap=ijg;gcu
when trying the same shortcut I ...
1
vote
1answer
39 views
I want to update the file (if necessary) and run the system command on current file
I realize that I can :nmap <leader>rc :!cat %<CR> to provide an easy set of triggers, but I would like to do this instead.
nmap <leader>rc :up :!cat %<CR> but it complains ...
0
votes
1answer
30 views
Can't get vim-ruby to work correctly on Git Bash
I installed vim-ruby on Windows by downloading and running the installation script. I have Git-bash and its own packaged vim.
My problem is that I believe indentation and syntax isn't correct. First ...
2
votes
1answer
60 views
How to align at/after last pattern occurence?
Example:
this is my text, this is, this is my text
this, this is my, this is my, this is text
this is, my text, this is, this is my text
this, this is my, this is my, this is text
Normally, I use ...
0
votes
0answers
16 views
Vim Syntastic plugin not working for coffeescript 1.6.0+
I have the following syntastic settings inside my .vimrc:
"------------SYNTASTIC-----------
let g:syntastic_enable_signs=1
let g:syntastic_mode_map={ 'mode': 'active',
\ ...
0
votes
1answer
33 views
VIM : Deleting all characters before particular word for all the lines in a file
I need a vim command for deleting all characters before a particular word for all the lines in a file
Ex:
Input:
asdfasdfasdfscccHello
qwerqwerHello
24351243vsfgertHello
Output:
Hello
Hello
...
0
votes
2answers
36 views
How to map :!ruby % to a key combination in gvim?
I want to map :!ruby % to Ctrl + j in gvim, but I can't understand exactly how.
So, I know that there are different type of maps working in different modes - normal, visual, insert, etc. What I ...
2
votes
4answers
62 views
Vim plugins don't always load?
I was trying to install autoclose.vim to Vim. I noticed I didn't have a ~/.vim/plugin folder, so I accidentally made a ~/.vim/plugins folder (notice the extra 's' in plugins). I then added au FileType ...
0
votes
1answer
21 views
How can i install ctags in centos 6.4?
my centos version is 6.4
and.. i don't know how to install ctags.
is this right place to write 'ctags -R' ?
[root@localhost 2.6.32-358.el6.i686]# pwd
/usr/src/kernels/2.6.32-358.el6.i686
...
1
vote
2answers
53 views
Strange behavior when using regex to match parentheses in vim
I'm having some trouble understanding why a regular expression is not working. I'm searching for the phrase @Test(groups = {"broken"}), and I'm not able to find it with this expression:
...
2
votes
2answers
53 views
Paste in vim stripping newlines from the pasted text
I am copying large amounts of text from PDF documents into vim, but when you do a copy-paste from PDFs as opposed to say web browsers, everytime the PDF line breaks within a paragraph the copied text ...
0
votes
2answers
38 views
Where is the built-in Java Syntax file for vi?
I'm using the default vi installed via homebrew on MacOS.
When I open a java file, I can see the syntax being highlighted as expected.
However, I would like to make some customizations to the syntax ...
-1
votes
0answers
44 views
my powerline for VIM cant work on 256-color theme [closed]
This problem has bothered me for a long time.
Powerline works fine when the 256-color is off ("set t_Co=256)
However, when I turned on (set t_Co=256), it is broken.
The powerline is much ...
-6
votes
1answer
61 views
Ruby in 20 minutes colorscheme for vim [closed]
I like the color scheme of "ruby in 20 minutes" very much. Who can tell me its name or where I can download one?
0
votes
1answer
22 views
Calling a function upon set command
I'm swapping some mappings on my keyboard to make it easier on my wrist, but I wouldn't want others to be surprised if they open vim on a computer I had been working on.
So I put these mappings ...
2
votes
4answers
75 views
Substitute `number` with `(number)` in multiple lines
I am a beginner at Vim and I've been reading about substitution but I haven't found an answer to this question.
Let's say I have some numbers in a file like so:
1
2
3
And I want to ...
0
votes
1answer
19 views
Vim plugin pytest not found
I'm having trouble installing a vim plugin and don't really know where to begin troubleshooting. I have dozens of other plugins installed okay using vundle, but I'm not sure why I can't get this one ...
0
votes
1answer
20 views
Wrong word boundaries in nginx files with vim
I'm using the nginx syntax file with vim from here. Whenever I edit files of type nginx i get strange word boundaries. For example, if i have this line:
root /www/www.some-example.com/htdocs/www;
^ ...
-1
votes
1answer
32 views
Vim Supertab plugin reverses the direction when navigating completion menu
When I loop through the list of completion alternatives via supertab (i.e. activated by pressing <TAB>), the selection starts at the end of the list and cycles upwards when repeatedly pressing ...
1
vote
2answers
16 views
vim: smartindent (or cindent) is activated but does not work
Vim is not autoindenting the C source files I am working on, although it claims both the autoindent and cindent options are enabled when I type the
:set
command.
Nothing is happening when I type in ...
0
votes
1answer
37 views
How can I use nerdtree over SSH?
I work alot over SSH using vim, when I use Nerdtree on my local machine , it looks as expected:
However when I use vim over SSH, it looks like this (e.g. not working ... really...)
Any ideas how ...
0
votes
2answers
31 views
how to write a function to fold certain patterns
Hello I am coding R and would like to be able to fold function
In R I code function like this:
myFnName <- function(some, args){
#some description or not
some code
}
My question is how ...
1
vote
1answer
55 views
How can I populate the vim “Insert mode completion” dialog with the shell output?
[Full code at the end of message]
I am trying to write a plugin for vim in which I am calling a ruby script. The function will not be part of the CTRL-P autocompletion. I just need to invoke a ...
0
votes
2answers
48 views
Open another tab from within Vim
In Vim, if I wish to open another tab, I am currently write-quitting out of all of my documents, pressing up on the terminal and then adding the location of the new file I wish to open onto the end of ...
0
votes
0answers
47 views
Equivalent of Sublime Text's Goto Anything (i.e. Command + P) in vim [duplicate]
As per title, is there an equivalent of Sublime Text's Goto Anything (i.e. Command + P) in vim? Or some way to quickly navigating to files by typing part of their path in?
1
vote
2answers
61 views
VIM does not replace the word after the dot punctuation. How to change it?
I have the following problem
This is text:
printf("sysname %s",ut.sysname);
I want to use vim to replace sysname line by line. I type the command in my gvim:
:s/sysname/version
I want to get ...
0
votes
1answer
21 views
Vim: run one filetype's processing when opening another filetype
I'll be editing some .less files. Now, I want the filetype to be "less", but I want vim to do all inclusions of css and css3 plugins when opening a .less file.
There are times I'd like to be able to ...
0
votes
3answers
53 views
Managing multiple makefiles in vim
I would like to effectively manage different project in Vim. When it is time to rebuild I have several Makefiles in different locations. In Vim if I use :make it will try to compile the Makefile in my ...
0
votes
3answers
43 views
Insert predefined text on keyboard shortcut
I often insert binding.pry to my ruby files when I debug them. As I use Vim I'd love to automate it to avoid retyping it every time. How could I do it?
The exact sequence I'd like to map is:
...
0
votes
0answers
48 views
Can't make work ScrollWheel map in vim
I have a little problem with mapping vim shortcuts for my mouse wheel. I can't make this work :
set mouse=a
set nowrap
noremap <C-ScrollWheelUp> 3zh
noremap <C-ScrollWheelDown> 3zl
On ...
2
votes
2answers
58 views
search a pattern in each line and append it at the end of that line
I have a file with the following entries:
folder1/a_b.csv folder1/generated/
folder2/folder3/a_b1.csv folder12/generated/
folder4/b_c.csv folder123/generated/
folder5/d.csv ...
1
vote
1answer
44 views
Is there a way to map Control + 6 or Shift + Control + ^ to a leader key?
Control + 6 or Shift + Control + ^ will switch between the current file and the alternate file in vim. Its useful but I hate using the Control key and try to avoid it if possible. However, despite ...
0
votes
1answer
35 views
Cannot set the default font of gvim in mint
i have tried to move my configuration of VIM in Mac to Linux Mint.
However, the default font of gvim cannot be set. I have already put set guifont=Monaco:h14 into my .vimrc and I have also downloaded ...
0
votes
0answers
23 views
vim fuzzyfinder: no scroll
Whenever I open up fuzzyfinder, the active window scrolls down a few lines (unless the cursor is at the top of the window). This jumping is driving me nuts. I tried to set scrolloff to 0 (although I ...
1
vote
3answers
37 views
Best way to run VIM on OS X? [duplicate]
What is the best way to run VIM in OS X? Should I open the terminal and type vim or use the macvim package?
I like the terminal version, but I can't run it by simply clicking an icon in the dock. I ...
2
votes
1answer
33 views
How do I organize a vim plugin with unique syntax elements?
I've written a (basic) vim plugin for myself, and I'm having a difficult time organizing it. Right now, it lives in two files: one in syntax/ and one in ftplugin/ (both of which are in ...
1
vote
3answers
52 views
Error q : Command not found on Vim
I created a bash script :
#!/bin/bash
su root -c vim $1 -c ':%s/^M//g' -c 'wq'
My script has to remove all the ^M (carriage return on Windows) on my file, then save it.
When I execute my script ...
-1
votes
2answers
26 views
vim-rails switch off autocompletion
I use Tim Pope's vim-rails and I would like to switch off the autocompletion (for example when I enter AM. it expands to AcionMailer). Don't want to change plugin itself, because I use git submodules ...
2
votes
1answer
42 views
Make sign use only one character width?
Sign is referring to the extra column on the left that is added when using e.g. the syntastic plugin.
I'd like to save on space by having it take up only one column of space, if possible. I can ...

