0
votes
1answer
51 views

Loading a new vim colorscheme

I am trying to load a new vim colorscheme without any luck. I have downloaded the railscasts.vim scheme and have put this in: ~/.vim/colors My .vimrc looks like this: colorscheme railscasts ...
0
votes
0answers
20 views

Font characters change to gibberish sporadically in vim [migrated]

I use vim on a Mac in iTerm2 (ie - not MacVIM) and within a tmux session. I have powerline installed, so that's something to keep in mind. Sometimes, when I'm typing in a particular file, for some ...
1
vote
1answer
39 views

Why does this Vim command wipe all characters from my terminal?

I have this function in my .vimrc, which I got here function! SetExecutableBit() let fname = expand("%:p") checktime execute "au FileChangedShell " . fname . " :echo" silent !chmod a+x % ...
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
1answer
38 views

How to map already being used shortcuts in CLI vim?

I am a vim user. I like to use CLI vim rather than GUI MacVim. I usually use vim in iTerm2 terminal which has already a lot of shortcuts using Command Key. I want to map my custom shortcuts but ...
1
vote
1answer
71 views

Is there a way to quit Node.js and launch VIM on a file?

I'm creating a simple terminal-based file manager on Node.js. Is there any way I can, from while my program is running on the terminal, quit it and open a file with VIM?
4
votes
1answer
253 views

What is a .un~ file or or why does Vim in the Terminal make the .un~ file?

I've noticed I have some dotfiles that end with .un~, for example I have a .vividchalk.vim.un~, but I'm not sure where that came from. It seems like they are created when I use Vim in the Terminal. ...
1
vote
1answer
275 views

brew installed Vim in Terminal with RVM (Ruby 1.9.3), MacVim and Command-T

I'm using RVM (1.17.7) and Ruby 1.9.3p362. In the long run I want to move over to Vim in the Terminal with Tmux. I'm trying to learn how to install and run with my choices for plugins instead of ...
1
vote
1answer
40 views

Passing ^C in a vim noremap

I use vim (v7.3) combined with guake terminal as an Octave DE on ubuntu 12.10. If I want to stop a process I can go to the terminal and press ctrl-c. I would like to do this with a remap from within ...
2
votes
2answers
626 views

Vim: Difference between t_Co=256 and term=xterm-256color in conjunction with TMUX

I am testing the various different terminals that I tend to use to SSH into Linux boxes that I have Tmux set up on. Basically I noticed this behavior, and I am hoping that somebody could offer an ...
1
vote
2answers
231 views

Terminal emulator or shell with vim-like commands [closed]

I've kind of become vim crazy these last few months, using plugins like Vimium to control chrome. I currently use iTerm2, but I was wondering if there were any terminal emulators or shells that use ...
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
1answer
110 views

The easiest way to run java class when editing the .java file form VIM

If I'm coding in cpp, in Vim I can do: !g++ % && ./a.out to quickly compile and run the code. However, if I'm coding in Java, in Vim I can do: !javac % for a quick compilation, but for ...
4
votes
2answers
122 views

Bash Commands from vim

When I run bash commands from inside of vim I notice that the path is all wrong. Is there a way inside of my .vimrc to have it load my .bash_profile or just inherit the PATH and alias settings from ...
0
votes
1answer
294 views

Vim + iTerm2 color issues

I have trouble with the right Vim configuration. I'm using the latest version of Vim as well as the latest version of iTerm2. I try to get the solarized colorscheme working, but without luck so far. ...
0
votes
1answer
123 views

Vim insert strange characters when trying to fix Alt key

I found the workaround for mapping Alt key on gnome-terminal in this topic. After editing the vimrc file, my Vim now recognizes Alt-j as ê (which is a non-english character), how can I fix it? Thanks ...
0
votes
1answer
49 views

How to scroll through history in Terminal.app and Vim?

I have problem with scrooling through command history in Terminal.app. Looks like something clear them. Take a look on screencast.(video) => http://www.screencast.com/t/JgrQv5XNOH
2
votes
1answer
214 views

VIM installation on OS X 10.8 Mountain Lion can't be found on ~/.vim/

I'm pretty new on OS X and VIM, and I just tried to install MacVim (I downloaded snapshot 66 from github, which is actually build 7.3.754). The problem is that when I was trying to install Sparkup ...
1
vote
1answer
213 views

urxvt cursor shape set to |

I want a cursor set as | in vim when in insert mode (it's easy in gnome-terminal, but I want to switch to urxvt). I don't find a good way (_ is possible, but I really prefer | ). I'm sure that all is ...
0
votes
3answers
92 views

Uninstalled MacVim, now can't use regular Vim?

I got a new machine at work. The previous developer had macvim installed. When typing 'vim' in the terminal, the macvim program would open. I uninstalled macvim because I don't use it. Now when I type ...
0
votes
1answer
84 views

funtional keys in vim in xterm

Functional keys (F1-F12) for vim in console don't work. But the worst thing is when I hit such key, vim stays in some "mode" not allowing me to type anything for 2s... Very annoying Another thing is ...
1
vote
2answers
133 views

How to map CTRL+Tab in vim Mac OSX Terminal

I'm trying to make Firefox keybindings work for tabs in vim (ssh'd into a server through OSX Terminal), however I'm running into issues. Its basically the same as this Stack Overflow question except ...
1
vote
1answer
198 views

How to run Vim commands from Terminal

My questions is one that I haven't seen answered, the usual question is how to run certain commands to a file. My question is how to run Vim commands or functions, from outside Vim (i.e. Terminal), ...
3
votes
4answers
629 views

Git commit in terminal opens VIM, but can't get back to terminal

Hi guys I'm really lost here hoping for some help. I never use terminal, however trying to learn github at the moment and doing this Git essentials tutorial over at nettuts. I'm on the lesson about ...
2
votes
4answers
240 views

When I try to run vim in command line I get Python errors

When I try running vim in the Terminal (so as to follow @romainl's suggestion in my other question) I get lots of Python errors, which all boil down to: IOError: invalid Python installation: unable ...
2
votes
2answers
84 views

Permanent syntax on switch for Vim over OS X Terminal

I use the terminal to vim into existing and new programs. I hate the fact that at all times I need to kick in :syntax on on the command line to make the syntax all colorful. Does anyone have a recipe ...
0
votes
0answers
60 views

Vim: need to press Enter after opening a file before it will actually open

Recently, Vim started behaving strangely. Whenever I open a file with Vim in the terminal, I see the line that is normally at the bottom of vim: "<filename>" [dos] ###L, ###C But instead of ...
1
vote
3answers
234 views

Vim under mac does not behave as expected

I recently got a mac. I was previously working on a laptop with ubuntu and I was using vim. I now will discuss about vim in console (iTerm2 or the default terminal) and macvim. The problem is that ...
1
vote
0answers
155 views

Vim zenburn doesn't work under screen in mac

I'm trying to use zenburn on OSX under vim. However, whenever I use vim under screen, the background is black instead of grey. Are there color settings I need to set in screen? Here's my screenrc: ...
4
votes
2answers
289 views

C++ Program taking control of terminal window

When using vim in the terminal, it essentially blanks out the terminal's window and gives you a new one to start coding in, yet when you exit vim the terminal's previous output is still listed. How do ...
2
votes
1answer
131 views

Vim <alt+X> bindings don't work in terminal

I've a mapping nmap <A-k> :wincmd k<CR> which works in gui vim, but not in terminal. How to make this mapping work in terminal mode?
2
votes
2answers
108 views

How to create a border between the line numbers and text in Vim

I'd like to have a thin border line to the right of the line numbers and to the left of the text.
0
votes
1answer
226 views

Strange changing background color in VIM solarized

I don't know exactly how to describe this issue, but when using solarized colorscheme theme in terminal vim, I'm noticing that when I edit some text various ends of lines (not "line-endings" but from ...
0
votes
3answers
260 views

Vim seems to get stuck when writing a file

I am using Terminal.app in OSX and Vim. Every time I try to write/save a particular file (it happens to be a .scss file) Vim seems to just hang. I know it successfully writes the file but it never ...
1
vote
1answer
125 views

remap zsh terminal hotkey

I'm using the yadr dotfiles and ZSH on my mac. I use the delimiter "jj" to switch from insert to edit mode in vim, and I did that by putting imap jj <esc> in ~/.gvimrc. However, zsh / yadr ...
0
votes
1answer
254 views

Vim: Autocmd for removing colorscheme background fail to run

I'm trying to override the background of all colorschemes when using terminal windows - mostly because I find transparent terminal windows strangely exciting. All my best efforts of research points ...
2
votes
1answer
396 views

How to change cursor shape in VIM when entering insert mode with MACOSX Terminal.app?

I want to change the cursor shape from an underscore to vertical when entering insert mode within VIM running in Terminal.app. (NOTE: I am aware that this is the default behavior under macvim.) This ...
0
votes
0answers
333 views

vim default and meta key bindings

I recently changed from using vim on a linux-based system to OS X, and am having trouble with some of the keybindings. Note that i am not using macvim, just the regular command line vim. i have tried ...
2
votes
2answers
375 views

multi-column terminal multiplexer?

Let me explain what I'm looking for, hopefully for the terminal, but if it exists in an IDE, i'll take that too. I have a laptop with a 1366x768 resolution screen; I use vim for code-writing, and I ...
1
vote
1answer
827 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
4answers
3k views

Issues with solarized and Terminal.app

I really apologize because I know that this question has been asked multiple times. I have gone through all of the previous questions, but I still have yet to have any luck setting up the Solarized ...
0
votes
1answer
121 views

How to get scrolling transitions in OSX terminal?

How can I get the terminal (or Visor/TotalTerminal) to smoothly scroll when it prints out text. So that I don't completely lose my sense of location when for instance showing git diffs. Or, when ...
0
votes
4answers
419 views

Run MacVim Inside Terminal

I recently switched from Vim to MacVim because it has Ruby support, however, the separate UI is very inconvenient. Is there a way to run MacVim inside the terminal instead of mvim booting a separate ...
2
votes
1answer
459 views

How to change specific terminal color settings on Mac

I have recently installed clang_complete plugin for VIM. Everything looks fine except in popup menu I get a Pink background color which is uncomfortable. How do I change this color? Also is there a ...
0
votes
2answers
499 views

Copy into the system clipboard from local vim on mac

It seems like versions of this question have been asked here before, but I haven't been able to glean from them the exact response to what I am looking for. Say I open up a .txt file via vim on my ...
1
vote
1answer
170 views

Trying to change the cursor, doesn't work for terminator

this piece of .vimrc is for changing cursor shape. It works showing the underscore cursor in xterm, but in terminator not...Any idea? I tried it changing xterm by terminator but it doesn't work.. if ...
2
votes
1answer
221 views

How does terminal encoding work in vim?

In GNOME Terminal(3.4.1.1) $ echo $LANG en_US.UTF-8 $ echo 你好 | iconv -f UTF8 -t UTF32BE | tee hello.txt O`Y} In vim(7.3): $ vim -N -u NONE --cmd 'set tenc=utf32 enc=utf32 fencs=utf32be' ...
1
vote
0answers
302 views

Vim and Quickfix - Double output - rails.vim help needed

I have used Vim for 2 days now - so I'm a newbie. I'm really stuck on this problem. When I run some commands the output is displayed twice: first in the terminal, and the in the Quickfix window (is ...
0
votes
0answers
84 views

vim, up key disabled [closed]

I have no idea what happened. Worked fine before, but now I can't move up a line or down. I can only move left to right. I looked online to see what I could do and someone mentioned something about ...
2
votes
1answer
566 views

How to change vim cursor shape in different modes

I use vim under iTerm2 in Mac, or putty in windows. I want to see different vim cursor shape in different vim mode. I know gvim & macvim have this feature, and there's an article to figure out how ...

1 2 3