Tagged Questions
1
vote
3answers
70 views
How to open `find` output with vim?
I've written a function that will find a function or class definition among Python files. It generates an argument list to be used with vim. It works for the first argument / file, but fails for ...
3
votes
1answer
52 views
VIM - Passing colon-commands list via command-line
Good day,
I am writing a simple script within my BASHRC file to accommodate something I couldn't quite resolve in a previous question:
Side-by-side view in Vim of svn-diff for entire directory
I ...
2
votes
2answers
33 views
can't get stdout of gvim into a bash variable
While trying to answer this question I'm experimenting with gvim --echo-wid which I think will work with xdotool.
Perhaps it's just brainache but I'm having a hell of a time getting the output of ...
1
vote
2answers
49 views
Pass a filename found in awk into vim command
Forever (a process manager for nodejs) gives new random logs each time you restart it.
I'm able to get the log filename with this command:
$ forever list | grep coffee | awk '{print $8}'
...
1
vote
2answers
80 views
Set shell's working directory to the current file opened in vim
I am using Windows gVim and I am trying to invoke commands to run on cygwin's bash. It is working, but the working directory is set to $HOME every time. Would it possible to set to the current file's ...
1
vote
5answers
101 views
How to remove a line bashrc linux
Hi as the question says basically, im adding some alias's to my bashrc in linux and its keeps messing up and when i try and go up with the cursor its just types AAA BBBB etc i know 'o' adds a new line ...
0
votes
4answers
41 views
Vim - Capture strings on Search and use on Replace
I have a css selector such as:
#page-site-index .toolbar .items {
How do I capture the ".toolbar .items" part and use it on Replace part of Vim S&R, so this selector can turn into:
...
0
votes
0answers
63 views
MacVim doesn't load $PATH env variable from .bash_profile [duplicate]
When I run MacVim from the command line, it has the environment variable PATH set correctly as I specify in my .bash_profile file.
However, running MacVim from the shortcut has a very stripped down ...
1
vote
5answers
66 views
Break a one-line file to a multi-line file, each line with the same number of words?
E.g. One-line file line.txt has the following line:
741 12 3 24 45 123 32 111 34
Suppose specifying the number of words in each is 3. then the goal is:
741 12 3
24 45 123
32 111 34
What scripts ...
1
vote
4answers
64 views
Text manipulation with vim (or maybe shell)
I have one file full with records like this:
"Full name","URL-style name","key_1a","key_2a"
"Full name","URL-style name","key_1b","key_2b"
"Full name","URL-style name","key_1c","key_2c"
...
I have ...
4
votes
1answer
109 views
Vim: Portable way to edit “[1]” when “1” exists
So, I want to edit the file [1]. Problem is, I also have a file called 1. I also use cygwin and its bash shell, win32 cmd and Linux. Sometimes I use cygwin's vim, and sometimes I use the win32 vim and ...
0
votes
3answers
127 views
Bash Shell Expansion Issue with multiple \r
I am trying to batch fix some .scc files using vim and need to pass a substitution sting to it.
I'm trying to use vim -E to pass this line ":s/\r/\r/g"
I've tried embedding individual characters as ...
1
vote
1answer
138 views
vim red highlight $( )
I was writing a script when I decided to move the functions to a lib file, but when I open the lib file all the $( and the consecutive ) are red highlighted, here are some examples of the script
...
1
vote
1answer
65 views
Run compilation in vim cwindow (and have vim not being “frozen”)
I use vim as my IDE and I also compile with it. I don't like the fact that vim is "frozen" when you run a (terminal) command inside of it.
So what I was trying to do is running my compilation in a ...
0
votes
1answer
85 views
How would I go about making an alias which runs a command with an ampersand &?
I'm trying to run gvim work with Unity but I can't seem to get it working.
A workaround is I can run the command gvim -f MYARGS& to make it play nice with Unity.
This lets unity manage the menu ...
6
votes
3answers
112 views
Using VIM command on all open files
I have a list of files i've opened in VIM using this command:
vim `cat list.txt`
I'm looking to run this command on all open files:
:99,104 norm i#
(from lines 99 to 104, insert a comment "#") ...
4
votes
3answers
135 views
How to keep vim from adding indentation to strings?
I want to be able to gg=G on my bash scripts, or some variation of auto-format that won't obstruct a simple echo.
I have a feeling that something like this isn't an issue, I just haven't discovered ...
3
votes
0answers
102 views
Gvim doesn't start without sudo [closed]
I have just tried to open gvim but it doesn't start..It just shows the cursor blinking after running $ gvim.
I tried adding sudo before, and gvim is opened correctly.
After doing ls -all ...
2
votes
2answers
112 views
How to use Vim as Git editor without “cannot allocate color” errors
(I've found a few proposed solutions for this problem, but none of them work for me.)
Problem
I am trying to use Vim as the git core.editor -- no matter what I do, I get "cannot allocate color" ...
1
vote
4answers
196 views
how to use vim to open every .txt file under a directory (with Bash)
I am trying the following to use a vim to open every txt file under current directory.
find . -name "*.txt" -print | while read aline; do
read -p "start spellchecking fine: $aline" sth
vim ...
1
vote
1answer
233 views
Need bash script to watch Directories and perform actions on new files and modified files
I want to watch mydirectory/
I created inot.sh and ran it in the background as # ./inot.sh &
Here's the first version of the script inot.sh that I tried:
#!/bin/bash
inotifywait -m -e ...
2
votes
1answer
177 views
Using bash calculator in a vim script - strange behaviour
Does anybody know why this works with bash calculator (bc) in vim:
echo system ("echo 3+5 \| dos2unix \| bc -l") ---> output: 8
echo system ("echo 3/5 \| dos2unix \| bc -l") ---> output: ...
3
votes
2answers
170 views
Ignore file extension in bash completion for vim
I wrote a small bash function to provide completion for vim. The function is the following:
# completion for vim
_vim()
{
local cur prev
COMPREPLY=()
_get_comp_words_by_ref cur prev
...
1
vote
4answers
180 views
How can I alias 'gvim filename' to 'gvim filename &'
I want gvim to always open in a separate window and return the command prompt immediately. In other words I want
gvim filename
to be the same as
gvim filename &
it seems like I should be ...
0
votes
2answers
108 views
Find Wordpress hooks and filters using Vim or similar
Wordpress allows you to extend its core using "hooks" and "filters." For example, to execute something quite early in the execution process I may write
add_action( 'init', function() { // Do ...
7
votes
4answers
256 views
Run vim command from commandline
There are lots of SO questions on running shell programs from vim. What I'm wondering is if it is possible to do the reverse - i.e.
$ vim :BundleInstall
for example, to allow me to run ...
3
votes
2answers
189 views
Run spell-check on multiple files and display any incorrect words in shell-script
I have a few files I wish to spellcheck. Normally I would open these in vim, run :set spell and do the changes. It's really teadious to open files and manually check if I've misspelt any words since ...
0
votes
2answers
72 views
Open all Vim tabs for a Rails workflow automagically [closed]
I'm working on PHP, Python and Rails projects now and would like to get to work quicker each time I switch projects.
I have found some Guake or ABC-terminal automation scripts to load up my different ...
3
votes
2answers
120 views
Delete line if same line in another file matches a pattern
I have 2 files,fileA and fileB.
fileA contains:
71
32
23
10
...
and fileB contains:
ok
no
no
ok
...
What I want to do is deleting lines in fileA if the same line in fileB matches 'no'.
So the ...
0
votes
2answers
121 views
Search and delete a block using sed command in ubuntu
The thing I would like to perform is to 1- Find and 2- delete the whole definition block of (__c64):
unsigned long long __c64(unsigned int llvm_cbe_hi, unsigned int llvm_cbe_lo) {
unsigned long long ...
0
votes
2answers
398 views
How to write a bash script to open multiple files in Vim using splits and tabs?
I am trying to automate some manual labor, using a bash script. Basically I open multiple files with Vim in 1 terminal-window (and only one terminal-tab), using several splits, vsplits and tabs. I ...
0
votes
2answers
96 views
Vim programmatically save with different file extension
I'm writing slim files in Vim and I want them to compile and save as html files when I save. Adding this to my .vimrc makes it happen for files in the current directory:
au BufWritePost *.slim silent ...
3
votes
7answers
219 views
Is it possible to specify the bash prompt using a command-line option?
I use vim a lot and often find it useful to drop into the command line using !bash.
However, I need to type exit to return to vim and sometimes I'm not sure whether I'm in a subshell or whether that ...
0
votes
0answers
125 views
vim ConqueTerm running bpython LookupError
I am trying to run bpython in my VIM ConqueTerm, but I got the following error:
Traceback (most recent call last):stebin <F9> Pager <F2> Show Source
File "/usr/local/bin/bpython", ...
2
votes
2answers
106 views
I want to create a shell script that will create a pre-formatted file and open it in vim using a file name as an argument
I want to create a shell script that will create a pre-formatted file and open it in vim.
Specifically, I want to create a script called newperl that will allow me to type newperl [filename] and ...
1
vote
1answer
831 views
Cursor color in vim terminal OS X Mountain Lion
I want to make the cursor and selected text easier to read in vim (white background, black foreground), so i've done
hi Visual guibg=white guifg=black gui=NONE ctermfg=black ctermbg=white ...
-6
votes
1answer
185 views
How to search and delete multiple words from a file [duplicate]
Possible Duplicate:
Deleting lines from one file which are in another file
i have a list of words in a file (1.txt)
Now i want to search all those words in another file (2.txt) and delete ...
2
votes
1answer
248 views
ctags for shell scripts without extensions
I'm working on a Bash script that is designed to be run 'as a tool' so has a name without an extension and a #!/usr/bin/bash line at the top.
My script has a number of functions, so it would be nice ...
5
votes
1answer
113 views
Auto-complete only filenames with bash when running vim?
Is there some plugin for bash that will modify tab complete when I'm trying to open a file with vim? For example, if I have a directory with the following files:
foo/
foo.c
foo
bar.c
bar/
(where ...
5
votes
5answers
221 views
egrep results to vim as a line referenced filelist
In a shell I use the following function to create a filelist and pass it to vim.
Feels alright, but I lost the line reference, I open the files in correct order but then I have to search again for ...
0
votes
2answers
164 views
How to do the grep the following in unix or AWK
I have a file some what like this
Start ---abcxyz
End ---- efg123
Ref ----2345
Slack---- lmnop
.....
......
and the above format repeats with other things in between next the "Start & Slack"
...
0
votes
2answers
541 views
Syntax highlighting bugs of VIM 7.3 for BASH scripts [closed]
I just upgraded OS from Ubuntu 8.04 to Ubuntu 12.04, as well as the corresponding VIM package. However, I found the syntax highlighting of newer VIM for BASH scripts is strange: (1) the colors of open ...
2
votes
2answers
189 views
Vim - Force extra spacing between lines for underlining
While using Vim for most of my coding, I typically prefer to have the current line under-lined so it's easier to see where I am in my code. I avoid using things like line-highlighting because it ...
6
votes
3answers
158 views
Bash or vim alias/command to use a certain template when creating Python files?
I was wondering if it is possible to insert something in .bashrc or .vimrc so that whenever I create a new Python file via vim it automatically creates a file with this already inserted before I edit ...
0
votes
2answers
315 views
Change Terminal Colors without changing vim colors?
Is there is a way of changing terminal colors without changing the colors in terminal VIM?
1
vote
1answer
147 views
How to get vim's setting into a bash variable?
I need to get the current value of some vim settings e.g. runtimepath.
I know I can get it in vim using :set runtimepath, but I cant find a way to get it into a bash variable.
If you know any way to ...
4
votes
4answers
260 views
open vi with passed file name
I usually use like this
$ find -name testname.c
./dir1/dir2/testname.c
$ vi ./dir1/dir2/testname.c
it's to annoying to type file name with location again.
how can I do this with only one step?
...
3
votes
2answers
176 views
How to run a process in the background inside Gvim?
Well, what I need to do actually is CTRL-Z out of a process that got started from insert mode in GVim.
My command :Cdprun executes cdprun.sh which runs a sudo-ed daemon. I can add & at the end of ...
3
votes
1answer
321 views
Commands available in bash -i can't access in bash -l
I don't know how to describe it. It just happens when i use vim and set shell=bash -l. Then i found that a command called mm which can execute in terminal can't execute in vim .
And i also found that ...
1
vote
2answers
231 views
Using .vimrc settings in bash
I am using set -o vi to use bash in vi mode. Is there a way I can use .vimrc settings in bash (at least the ones that makes sense) ?

