New answers tagged vim
0
votes
E464: Ambiguous use of user-defined command
As an example of the error message and the solution for it. I can get this message by
: BufExplore<Enter>
Because for my configuration or plugin installation, I have 3 commands: BufExplorer, ...
0
votes
Trying to get vim-like pane navigation in tmux (hjkl) and select-pane not working
What worked for me instead of killing the tmux server is:
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
Then: tmux source ~/.tmux.conf
0
votes
Fast way to send current line to the shell in Vim
You can also use vim slime to:
"Grab some text and send it to a target, most probably: GNU Screen, tmux or Vim Terminal"
Send a command to a shell with:
Ctrl C
Once you have installed ...
1
vote
tmux copy mode - select text block
To get copying and yank working exactly how it does with vim, I set up tmux as follows
set-option -g mode-keys vi
bind-key -T copy-mode-vi 'v' send -X rectangle-off \; send -X begin-selection # ...
Top 50 recent answers are included
Related Tags
vim × 3735linux × 387
gvim × 362
vimrc × 269
terminal × 200
macos × 193
bash × 155
windows × 153
macvim × 145
vi × 123
ubuntu × 122
tmux × 119
command-line × 104
colors × 102
vim-plugins × 101
syntax-highlighting × 100
keyboard-shortcuts × 96
ssh × 79
regex × 79
text-editors × 77
shell × 59
python × 59
cygwin × 59
mac × 55
git × 54