Tagged Questions

Viper is a Vi emulation package for Emacs

learn more… | top users | synonyms

16
votes
8answers
5k views

What Vim features are missing in Emacs with Viper and Vimpulse?

There are important features of Emacs which are missing in Vim, such as the comint mode, and there are no scripts/plugins which can replace them. There are also benefits of Vim over Emacs, such as ...
6
votes
3answers
1k views

Viper mode in all modes

I'm moving from vi to emacs and, using viper and vimpulse, it gets pretty annoying when I C-w C-w to a window and cannot get back to the original one with the same command because the other buffer, ...
6
votes
9answers
2k views

Dynamic Memory Allocation Failure Recovery

I'm working on an embedded processor (400 MHz Intel PXA255 XScale), and I thought I saw one case where there wasn't enough memory to satisfy a 'new' operation. The program didn't crash, so I assumed ...
4
votes
2answers
489 views

How can I remap the prefix keys 'c', 'd' etc. in Emacs viper-mode

I'm using the Colemak keyboard layout, and want to try the Vim layout from here with Vimpulse. However, the layout remaps the command prefix Vim keys 'c' and 'd' among others, and these keys don't ...
4
votes
9answers
2k views

Vim macros don't work when using viper + vimpulse in Emacs

Any other tweaks for making emacs as vim-like as possible would be appreciated as well. Addendum: The main reason I don't just use vim is that I love how emacs lets you open a file in two different ...
2
votes
1answer
414 views

Emacs define-key, Viper-mode key binding

I'm trying to learn emacs, getting vi custom key bindings. Using Viper-mode, what is the correct way to re-bind a key? (I'm using Colemak keyboard layout(instead of qwerty) so have to change things ...
2
votes
2answers
265 views

How to install Vim scripts / plugins using viper-mode in emacs

I'm using viper-mode in emacs, and I'd like to use the Vim-LaTeX plugin with it (http://vim-latex.sourceforge.net/index.php). How do I install the plugin to use in viper-mode?
2
votes
2answers
77 views

viper-next-line, viper-previous-line has trouble with visual-line-mode?

Anyone else have any trouble with j and k in viper-mode when visual-line-mode is enabled? It skips many lines... is there any harm in re-binding them to next-line and previous-line, which recognizes ...
2
votes
4answers
429 views

Disable ESC as meta in Emacs viper mode?

I'm a long-time vim user trying to make the switch to emacs. I'm using viper-mode in emacs and I keep typing ESC (to get out of insert mode) and then a key (say, j). I type fast and often hit them at ...
1
vote
1answer
124 views

Ctrl-o in vimpulse?

does anyone know how to enable Ctrl-o to switch to normal-mode for one command in viper-mode or vimpulse? In viper-mode it's bound to open-line (which is what it does for vanilla Emacs and in vimpulse ...
1
vote
1answer
149 views

What’s in your .viper?

Similar to this question, but for Viper users specifically. How do you customize Viper?
1
vote
1answer
85 views

Making Viper state global

EmacsWiki says: There is a way to make Viper state and Viper insert state global, like in Vim (and probably vi). In Vim (and probably vi), you start in Normal Mode. You can switch buffer, and Vim ...
1
vote
2answers
243 views

Rebinding C-c to C-c

I'm using Viper, and I want to change its C-c and C-g to the original emacs functions. I can rebind C-g with (define-key viper-vi-global-user-map "C-g" 'keyboard-quit), but how can I rebind C-c, since ...
1
vote
1answer
95 views

How can I do viper search incrementally using / and ? in emacs?

something like what has been mentioned in the TODO section below: http://common-lisp.net/project/vial/darcs/extended-viper/vimlike.el Anyone ?
0
votes
1answer
41 views

Enabling viper-mode and vimpulse in compilation-mode

viper.el is hardcoded to disable viper in compilation-mode. How can I fix this without modifying the original file?
0
votes
1answer
93 views

Turn off viper-mode in Emacs?

This seems very simple, but I wonder how to turn off viper-mode once I turn it on with M-x viper-mode. I tried (setq viper-mode nil) but this did not do it.
0
votes
1answer
81 views

remapping <space> and <backspace> in Vimpulse to scroll more

In Some Thoughts on Emacs and Vim, Shinobu recommendation to remap <space> and <backspace> doesn't work on Emacs 2.3.1 with Vimpulse 0.5. What am I doing wrong? ;; from .emacs ; ...
0
votes
2answers
97 views

viper-mode changes <delete> key

I want to use the <delete> key (C-d, I think) for forward-deletion in viper-mode. Before starting viper-mode, <delete> works correctly. In viper-mode, <delete> jumps to the buffer's ...
0
votes
1answer
117 views

viper-insert wrong number of arguments error

I have the following function and keybinding in my .viper file: (defun th-change-to-regexp (regexp) (interactive "s") (kill-region (point) (progn (re-search-forward ...