vi is a family of text mode-oriented text editors.

learn more… | top users | synonyms

0
votes
2answers
42 views

Why does VIM do not indent two line for-loop properly?

I entered the following code in VIM, why does it do not indenting properly ? Here I wanna repeat the same loop 3 times, they are not nested loops. This code is just do describe my problem. #include ...
0
votes
1answer
13 views

How to cut and paste tabbed lines with auto indent set to on in vi [duplicate]

Not sure which stack exchange group this question goes so please move to the correct one if this is the wrong one. What's happening is if I highlight something with tabs/indents from one ...
-1
votes
0answers
13 views

I get extra characters when inputing many spaces in vi over ssh using my iPad [closed]

I use Server Auditor on my iPad to connect to a Rapberry Pi on my local network over WiFi. When I edit files with vi and I input several spaces in a row (for indentation) every other character is a ...
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 ...
0
votes
0answers
10 views

How to enable vi mode in Monodevelop

How can i enable the vi mode in MonoDevelop 3.0.3.2 on Linux? I found this: How to enable vi mode in Monodevelop on windows but it didn't work for me.
-3
votes
4answers
77 views

Put words, separated by commas, in quotes

I have a long line of words, looking like this: foo,foo bar,bar@foo,foo# bar,bar$ foo# Now I would like to turn it into: "foo","foo bar","bar@foo","foo# bar","bar$ foo#" Thus, the delimiter is a ...
0
votes
1answer
48 views

vi backspace printing ^? in insert mode

i use vi and when i am in an insert mode, it will print ^? instead of actually deleting the text. I referred to this vim backspace leaves ^? but it does not solve my problem. i did create .vimrc ...
1
vote
2answers
56 views

replacing part of regex matches

I have several functions that start with get_ in my code: get_num(...) , get_str(...) I want to change them to get_*_struct(...). Can I somehow match the get_* regex and then replace according to ...
0
votes
1answer
67 views

vi,how to replace the first character in each line

In vi,How to replace the first character in each line if it is the specified character a with another character !.If the first character is space,do not do anything.
0
votes
1answer
22 views

Opening editor while the edit mode is vi in Readline

I have set my readline mode to be vi in my ~/.inputrc set editing-mode vi I came to know that when you are in command mode, you can press v to open up current line in the editor defined in $EDITOR ...
6
votes
1answer
308 views

Avoid extra whitespace when pasting vertical selection

I often need to copy larger vertical selections e.g. when working with (let's stay civilized) "getter/setter"-rich interfaces, e.g A very long line with something I would like to copy: ABC$ A short ...
0
votes
0answers
15 views

vim - open files containing a specific string in new tabs [migrated]

I am looking for a way to open all files that contain a specific string in new vim tabs. The files are not in a specific directory, but scattered across a directory tree. Ideally I want to jump to ...
0
votes
0answers
10 views

Creating a file through a dangling symlink with vi [migrated]

This is the content of my typescript file, /mac>ln -s non_exist ~/link /mac>vi ~/link Hi! I am a link. /mac>cat ~/link Hi! I am a link. /mac>cat non_exist cat: non_exist: No such file or ...
1
vote
2answers
26 views

how to configure default TERM in screen session?

When invoke vi in a session inside SCREEN, I always encounter error: bash-3.2$ vi perf332.db2 ex: 0602-108 screen is not a recognized terminal type. [Press return to continue] [Using open mode] ...
0
votes
0answers
24 views

vim freezes on ubuntu 12.04 LTS EC2

I'm facing a weird problem. I login to my EC2 instance (small). As soon as I open vi/vim the screen freezes with a block cursor (no cursor movement). None of the keys work. Ctrl + Q, Ctrl + C, Ctrl + ...
1
vote
1answer
93 views

GVIM User Interface

I have been using Vi and Gvim for several years now. I have visual problems so I lean to editors that I can actually see the editing controls (UI). One thing that has been an on-going problem is Gvim, ...
-1
votes
2answers
76 views

Vi only uses one line of terminal [closed]

So I ssh into this old box we have at work, and it seems no one ever tried to use Vi on it before. When I try to open a file in vi all I get is one line of the file at a time, and it kind of screws ...
-1
votes
2answers
59 views

Editing/Replacing content in multiple files in Unix AIX without opening it

I have multiple files in Unix directory. files names are as below. EnvName.Fullbkp.schema_121212_1212_Part1.expd EnvName.Fullbkp.schema_121212_1212_Part2.expd ...
1
vote
0answers
53 views

Increase the space between lines in vim [migrated]

I think the title says it all. I've done my homework and the only command that I found was: :set linespace=3 but it doesn't seem to work, neither on the Mac nor in Linux. Edit: In Mac OSX you can ...
1
vote
2answers
69 views

Copy from Putty/Vim visual mode to windows clipboard

I currently have a vim session open in Putty, and I've selected everything in the file via visual mode. Normally to copy this onto clipboard I would use either "+y or "*y, but neither of those ...
0
votes
5answers
81 views

What is a way to read man pages in vim without using temporary files

I want to be able to read man pages in vim. For some reason, it seems that vim isn't able to read the output of programs through piping (i.e '(man ls) | vi' doesn't seem to work, bonus points to ...
0
votes
2answers
85 views

256 colors in vim and How to install new color scheme [closed]

I'm under Ubuntu 64 bit 13.04, I'm starting with vim and I don't understand an error that I'm getting Error detected while processing distinguished.vim: line 16: The distinguished color scheme ...
0
votes
1answer
49 views

Why does gf does not work for vim but ctrl+] works?

I have a file e.g. a.pl that has this method call: add_location(@crew); The actual definition is in the same file. If I do: CTRL + ] the cursor jumps to the definition. If I do: gf I get: E447: ...
0
votes
2answers
68 views

How can I run ctags in a large code base?

Assuming I have a code directory structure as follows: /top /second /core a.pl b.pl c.pl /common d.pl e.pl ...
1
vote
1answer
60 views

How to delete multiple lines of special characters in vi editor

I would like to delete multiple lines from a text file using vi editor.I can actually grep on such special patterns and list out them but how can I delete them from a file on the fly.Please share your ...
1
vote
2answers
47 views

vi/vim: how to scroll by a third of window height

As I understand it, ctrl-d and ctrl-u scroll the window by the number of lines that is set in the scroll option, which defaults to half of the height of the window. Can it be changed to scroll by a ...
1
vote
1answer
33 views

How to define a custom `textwidth` for BASH in VIM editing mode

The setting in my .vimrc is set textwidth=79 however, this affects the BASH-prompt as well, since I'm using the vi editing mode. Is there a way to set it for bash independently? If not, is there ...
1
vote
1answer
37 views

How should I handle errors in ex scripts without waiting for user input?

I'm trying to perform a search/replace with an ex script (targeting vim's ex implementation), as so: ex -qc 'g/^[#][[:space:]]*$/d|x' file.txt However, when file.txt already contains no matching ...
0
votes
0answers
23 views

How to run a script uninterrupted accross power-cycling

I'm stomped on how to accomplish this task. I need to run this script that fills up the nand flash on an embedded (linux-Busybox v1) device with random data, then continually repeats this process ...
2
votes
1answer
40 views

see variable definition by tooltips in vim

I need to frequently check definitions of variables/functions. I can jump to definitions of variables/functions by ctags with gd,gD, ctrl ] etc. But by it, I jump from my current position and lose ...
1
vote
2answers
176 views

copy a line/multiple-lines from vi editor to cmd line

Is there a shortcut key to copy a line from vi editor and then paste it into a terminal. Currently I select the text with mouse and then press crtl+shift+c (I'm using default settings of KDE) and then ...
0
votes
4answers
90 views

Is it possible in vi to know which line the cursor is?

I want to copy paste some lines in vi. I have a text like python class1 def: code code code ... code code code last line class1 python class2 def: code code code ... code code ...
1
vote
2answers
70 views

What is the difference between s, c and r commands in vi/vim?

I am trying to clarify this from the OReilly book on Vim, but the examples presented aren't clear enough. Clarification via examples/use-cases instead of direct explanation would be very helpful. The ...
0
votes
1answer
36 views

vim “syntax on” does not work

Here is my .vimrc 1 syntax on 2 set ts=4 3 set number 4 set smartindent 5 set shiftwidth=4 However, I tried to edit HelloWorld.java and HelloWorld.c. Both have pure regular black font. No ...
0
votes
1answer
54 views

`set editing-mode vi` in Python readline (os x)

Trying to beef up my regular python console, I wanted to add vi-style editing. 1st thing: python is not reading ~/.inputrc if I understand well. Then, I tried to do (through ~/.pythonrc.py): import ...
0
votes
1answer
69 views

Vim - automatic open close braces and move cursor

I'm new to Vim and right now i just need a very simple thing: (1)public class Foo <open brace><hit ENTER> or (2)public class Foo <hit ENTER><open brace><hit ENTER> To ...
3
votes
2answers
86 views

How to stop Vim from creating/opening a new file?

Vim creates new files when we give name of a non existing file. This is undesirable to me, as sometimes I give wrong file name and have no intention to open a file, and then close it. Is there a way ...
1
vote
2answers
39 views

Put (paste) character-wise yanked text over block-wise visual selection

Is there a way to easily achieve the above? For e.g., given red apple red banana red cucumber The fruits are blue. Is there a way for me to yank the word "blue", then visually-select the column ...
2
votes
1answer
40 views

Vi - “pop” explanations for reserved words and functions

I'm in the process of learning a new programing language (Neuron), and it so happens that it has many language-specific reserved words. I was wondering if there is a way to configure Vi to emulate ...
0
votes
0answers
26 views

Searching an XML file for duplicate lines or duplicate tags in VI

I have an XML file that has around 150k records. The format of the record is shown below: <product> <product_id>1</product_id> <product_name>ABC1</product_name> ...
1
vote
2answers
213 views

How can I delete multiple lines in vi?

I have tried to follow the following: How to delete selected text in VI editor but 5dd gives E492: Not an editor command: 5dd I then tried: 5d Which only deletes a single line. How can ...
-2
votes
1answer
14 views

Replacing the Last Ten Blanks With Tabs

I have a file in which each line contains data separated by a single space. The total number of spaces varies from line to line but is always greater than 10. I wish to replace only the last ten ...
0
votes
0answers
92 views

Is there a Vi or Vim plugin for the Toad Oracle client? [closed]

I use the Toad client and it's editor while working with Oracle. I find myself missing the Vi/Vim key bindings. When working with SQL Server, I have the excellent ViEmu for SQL plugin that lets me use ...
2
votes
1answer
31 views

In vi/vim, is it possible to create a mapping to concatenate words to a search on the fly?

This questions is best illustrated in an example. Example sentence: Bob went to the store. Bob bought an apple. Bob left the store. I put the cursor on "Bob" and hit * (shift-8) to search for ...
1
vote
0answers
17 views

vi bindings in ndk-gdb

I know C+M+j enters into vi-mode in gdb. Cygwin-gdb seems to obey my shell settings (set -o vi) and automatically is in vi-mode. However, I can't seem to get ndk-gdb to get into vi-mode. Does ...
1
vote
2answers
87 views

Vim: Align continous lines with spaces

I would like to indent everything in vim with tabs, except a particular case. For example I have this c++ code(where <tab> is a tab character series and <s> is a space character series): ...
0
votes
1answer
80 views

Put . after n equal symbols

In my case I want to divide text in 3500 symbols "text . in 3500" %s/\(.\{3500\}\)\(.*\)/\1\.\2/ E486: Pattern not found: \(.\{3500\}\)\(.*\) It works on the previous text but does not work on ...
2
votes
4answers
81 views

vim command line editting

is there a way to use vim/vi in the vim command line? Sometimes I write a long command in vim such as: :!./script /home/user/pet --flag=1 and I want to change for instance "user" by "other". What ...
1
vote
3answers
80 views

Move to the middle of a block code

Using Vim I'm trying to move the cursor in the middle of a code block, but I can't figure out how to do this : //cursor is for instance here. { //or here //some code // .... **** move ...
0
votes
1answer
86 views

Is it a good idea : map CapsLock to ESC in Vim? [closed]

maybe it's convenient after mapping ( for me ^_^ ), but would it cause some trouble on portability ? how about your ideas, vimers? :D many thanks.

1 2 3 4 5 16