Tagged Questions
0
votes
1answer
46 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 ...
0
votes
2answers
35 views
How to remap Vim keys (PageUp and PageDown)
I want to remap <PageUp> to <C-u> and PageDown to <C-d> per the Vim scrolling documentation.
As it stands right now, my /etc/vim/vimrc looks like this:
nnoremap <PageUp> ...
1
vote
1answer
45 views
How does one enable system paste in vim using zsh shell in Ubuntu? [closed]
I've recently changed shell from bash to zsh and I'm having a problem in vim, in that my system paste no longer works. Before changing shell, I was able to paste from my system clipboard using =+p but ...
0
votes
3answers
39 views
How to make a vim map that will make a command using the current selected file on NerdTREE?
Take the example below:
How to create a mapping that will perform rm contas.ls?
0
votes
1answer
53 views
Vim key mapping not working correctly for Ctrl key not working
I'm trying to do the following mapping noremap <ESC>:<C-w>l <leader>l, or noremap <ESC><C-w>l <leader>l, or some mapping that accomplishes the same effect, to make ...
2
votes
1answer
40 views
Vim: How do determine where/when a key mapping is set?
I've found a mapping in the output of :map that I'd like to remove, but I have no idea where the mapping is being set.
Is there a way to find out where/when a mapping is set so that I can remove it?
0
votes
1answer
76 views
Backward delete till character in Vim
dt, deletes till the next comma
a, b, c[,] d, e
dt,
a, b, c[,] e
What is the command to perform same operation in backward direction in order to get:
a, b, d, e
0
votes
2answers
84 views
How to map “Ctrl+>” combination in vim?
I want to map the CTRL> combination to gt (go to next vim tab).
Because > is a special character, nmap <c->> gt does not work.
How can I achieve the desired result?
1
vote
1answer
82 views
Remapping Vim's default help navigation keybindings
I know this may be a newbie question but I can't seem to find it, or make it work.
How do I remap the default keybindings for help files? Basically instead of <C-]> to go forward I would like ...
2
votes
2answers
148 views
vim keybindings with neo keyboard layout
This question is the same as this one, only regarding the (lesser known) neo keyboard layout instead of dvorak.
I want to start programming and I understand that vi and vim are considered to be ...
4
votes
1answer
265 views
When calling Vim from Midnight Commander, Ctrl-O makes me stuck in the Midnight Commander panel view
By default, Ctrl-O in Midnight Commander is used to show the console output. In /etc/mc/mc.keymap I have set ShowCommandLine to another keyboard shortcut, and now MC doesn't react to Ctrl-O.
Again, ...
2
votes
1answer
272 views
ESC doesn't work in cygwin vim
I installed cygwin on Windows 7. When I start vim in cygwin terminal it starts in interactive mode. I can't change mode to command one by pressing ESC. What could be the reason?
UPDATE:
Also vim ...
1
vote
1answer
66 views
Changing Shortcuts in Vim
I'm just getting into using Vim. The way I learned to type I keep my fingers anchored over the "j,k,l,;" keys instead of the "h,j,k,l" keys. I'd like to change the key board short cuts to essentially ...
1
vote
2answers
214 views
Disable use of MacVim keyboard shortcuts
Is there any way to disable keyboard shortcuts in MacVim? I mean the shortcuts like Cmd + s for example, I want to convince myself to use things like :w, but I can't do so if I can save the file using ...
1
vote
2answers
124 views
How to prevent <Esc> from waiting for more input in Insert Mode
When I leave insert mode by pressing Esc, there is a half-second pause before Vim actually returns to normal mode.
Normally this wouldn't be an issue, since pressing a normal mode command like j ...
4
votes
2answers
197 views
Traversing directories with vim file name completion in insert mode (Ctrl-X Ctrl-F)
I’m trying to use vim’s compl-filename feature (Ctrl-XCtrl-F) to complete paths in INSERT mode, but I can’t work out how to traverse into directories without (temporarily) ending the completion mode:
...
0
votes
0answers
53 views
Vim: Ctrl+S doesn't work for Russian layout (assuming I mapped the Russian key)
I have this in my .vimrc:
map ы s "this maps the russian letter "Ы" which is on the same key
map <C-s> :w<CR>
Unfortunately, Ctrl+S wouldn't work in Russian layout. I know this must be ...
0
votes
1answer
44 views
How would I specify a window in Vim to be max height when switching to it?
Right now when I open a new window I do <ctrl> w n and then I resize it with <ctrl> w _.
Also when switching windows I do <ctrl> w <arrow-key> until I get the window I want ...
1
vote
7answers
140 views
What is the most efficient way to reach a spot on sight on VIM?
Suppose you are on line 640 and notice the following on line 671:
if (jumps_over(quick_fox[brown],the_lazy_dog)) the_lazy_dog.bark();
What would be the most key efficient way to navigate to ...
1
vote
1answer
103 views
Keys and key combinations in Vim with no function
In Vim I (of course) use keymappings to make my life easier, but when making a key mapping of my own I would really know if that key (or key combination) had some purpose before I potentially remap ...
2
votes
4answers
110 views
Setup a shortcut to replace easily selected strings in VIM
I have a lot of php/html files with many strings that should be internationalized with gettext.
Therefore, I have to go through each file, spot the "message" strings and replace each one by
<?= ...
7
votes
1answer
2k views
How to map Caps Lock to Esc for Vim in Mountain Lion when keyremap4macbook doesn't work?
I use vim to develop on my mac and I updated to Mountain Lion yesterday. I was using http://pqrs.org/macosx/keyremap4macbook/ this to remap the escape key's function to caps lock to switch between ...
0
votes
3answers
153 views
Vim - How do I show a helpful error message when using the arrow keys in insert mode?
I'm trying to stop using the arrow keys in vim. But instead of setting them to <nop>, as other people do, I want them to show an error message. This does the thing in normal mode:
noremap ...
2
votes
4answers
103 views
Getting a multiline yank to paste below the cursor
I'm trying to paste in Vim like so:
a_1 "Day"
a_2 "Week"
a_neg_1 "Refused"
a_neg_2 "Don’t know"
where I copy the last two lines and past them above the first two. Like this:
...
2
votes
2answers
438 views
Shift lock key acting like escape AND shift lock. How to only make it behave like escape using xmodmap?
I want my shift lock button to act like escape in linux(ubuntu) for in vim. I did the following in my home directory:
xmodmap -e 'clear Lock' -e 'keycode 0x42 = Escape'
xmodmap -pke > .Xmodmap
...
1
vote
2answers
227 views
How to map {Ctrl 0,-,=} keys in vim?
My keyboard's layout(2nd row):
`1...0-=Backspace
I want to map function calls to Ctrl+ 0, -, =.
This is the function I created:
" it doesn't work
nnoremap <C-=> :call ...
13
votes
7answers
440 views
How do you increase a number *directly* under the cursor?
In vim et al, you can increase or decrease the number your cursor is on by using CTRLA and CTRLX. However, this increases the whole number but I would like to simply increase the number directly under ...
3
votes
5answers
134 views
Go to the next same word in Vim without using search
Is there a shortcut in Vim for going to the next word which is the same as the word cursor is on? It should work without typing the word with search command /.
1
vote
1answer
177 views
Binding special keys as vim shortcuts
My keyboard has extra hotkeys like "Back" and "Forward" that work in a web browser. I would like to use these types of keys as hotkeys in vim. How can I find out what vim sees these keys as so that ...
2
votes
4answers
129 views
Order of $ and ^ in vim. Is it reversed?
In vi ^ moves cursor leftmost (to first nonwhite character) and $ moves cursor rightmost in line. ^ $ are right to left on my keyboard (that is $ ^), which means key on left ($) moves cursor rightmost ...
2
votes
1answer
75 views
vim key mapping to existing key
I am trying to map a key combination to an existing key combination and added this in .vimrc file:
noremap <C-A> <C-TAB>
what I want to do is to let CTRLA does exactly what CTRLTab does ...
2
votes
2answers
141 views
What is the equivalent of <Ctrl>+<Shift>+<End> in Vim?
Is there any equivalent for Ctrl+Shift+End in VIM which can select all text from current cursor position to the end of the file?
2
votes
3answers
1k views
How to get Cmd-left/right working with iTerm2 and Vim (without requiring .vimrc changes)?
I want to be able to use Option-left and Option-right to skip words (and Cmd-left/right to go to beginning and end of lines) within Vim as it does at my shell prompt. My Iterm2 preferences have ...
4
votes
4answers
782 views
Paste in the line where the cursor is
The command p pastes below the cursor and P pastes above the cursor. What's the command to paste in the line where cursor is?
2
votes
2answers
251 views
Move between Vim windows with <tab> and <s-tab>
I have the following lines in my .vimrc:
nnoremap <tab> :wincmd w<cr>
nnoremap <s-tab> :wincmd W<cr>
I want to move between Vim windows quickly using in Normal Mode. The ...
1
vote
3answers
490 views
Vim move line up,down,left,right
In netbeans with CTRL+LEFT, CTRL+UP, CTRL+RIGHT, CTRL+DOWN we can move the line and it contents to LEFT, UP, RIGHT, DOWN ... how can i do this with vim !?
In linux netbeans is ALT+SHIFT ARROW LEFT, ...
4
votes
3answers
2k views
Navigating between VIM windows in an alternative way
I am using CtrlW to navigate between VIM split windows. Does there exist any different ways to do this?
For example, if I have, say, 5 split windows opened and want to navigate to the top left corner ...
0
votes
1answer
185 views
vim shortcut to traverse the word from right to left
Vim shortcut to traverse the words in forward direction i.e left to right is w / W
What is the shortcut to go in the opposite direction?
Similarly x deletes character on which cursor is there. So ...
1
vote
2answers
100 views
Are there any recommended typing methods when you use a lot of parentheses?
It's awkward to type a lot of parentheses for me, as in (). [] {} come a little more naturally. Does anyone map their keys or do anything when dealing with a lot of parentheses? General tips are ...
4
votes
2answers
136 views
Is it possible to yank the entire element without moving to the beginning?
When my cursor in middle of a word, and I want to yank the whole word, I must press b first, and press yw to yank it.
I want to know can I yank the word without hitting b first?
1
vote
3answers
1k views
How do I navigate the MiniBufExplorer without going into the MiniBufExplorer window?
How do I navigate the MiniBufExplorer without going into the MiniBufExplorer window?
In lines 170-174 of minibufexpl.vim:
" To enable the optional mapping of <C-TAB> and ...
2
votes
2answers
2k views
Certain key mappings not working in MacVim
I've recently switched to using a Mac at work from previously using Linux. I found out about MacVim (from http://code.google.com/p/macvim/) and have been trying to port over my previous keymappings.
...
1
vote
1answer
83 views
vim gf with resource://
I'm working on some Firefox extensions and I'm trying to set up my vim to open modules using the gf keys.
An inclusion looks like this:
...
3
votes
2answers
118 views
Vim: inserting at the end of the line
Is there a key to insert something at the end of the line in Vim? It would be similar to A, except it would insert before the last character, not after it.
A use case is for example in Python:
if ...
1
vote
2answers
446 views
Vim: Map Cmd-Alt-j to tabprevious?
I'm having a heck-of-a time with this. I've started using tabs more in MacVim and I'm trying to make a mapping of Cmd+Alt+j and Cmd+Alt+k to move back and forth between tabs. Similar to using ...
1
vote
2answers
134 views
Keybindings based on delay in vim
I would want vim to leave insert mode if the last key pressed is a } and no other key has been pressed for a while. Is this possible?
-2
votes
2answers
156 views
What Vim plugins or native behaviour simulates these features? [closed]
I've started using Vim for development and i'm really starting to like it a lot. But there are a few features of my usual editor (EditPlus) that i would like to have in Vim, maybe you can suggest ways ...
1
vote
3answers
1k views
Vim: <Ctrl-h|j|k|l> for Movement in Insert Mode
I'm being quite new to Vim and I consider setting it up so I can use Ctrl + movement keys (H, J, K, L) for moving around in Insert mode.
Two questions:
How is this set in .vimrc?
Is this ...
4
votes
3answers
2k views
VIM - Jump to next error / code highlighted in red
When dealing with merge conflicts it is common that the >>>>>> and ====== inserted by DCVS are syntactically incorrect for the file I'm in and show up as highlighted in red. When ...
2
votes
2answers
821 views
how to configure vim commands to windows style?
My job involves working on Windows, *ix and with variety of IDE's like Eclipse, Visual Studio. Sometimes I really don't want to open Eclipse for little editing so I would prefer simple text editor ...