Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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, ...
5
votes
1answer
97 views

How do I make ; work like : in vimpulse?

I'd like to press ; to drop into ex mode, instead of : Does anyone know how I can configure vimpulse to make this happen? Thanks!
4
votes
4answers
735 views

Why don't more people use emacs with viper-mode? [closed]

I've started to use emacs, and I've found out that while the editor-specific features of emacs are better than those of vi, the text-manipulation methods of vi are better than those of emacs (and ...
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 ...
3
votes
4answers
205 views

How can I make emacs stop loading viper-mode?

I'm developing a mode for Emacs, and everytime I switch to its buffer, viper gets turned on. I've modified viper-mode to trace where viper-mode is being called, and surprisingly ...
3
votes
2answers
1k views

Insert spaces instead of TAB in Emacs viper-mode

I am long time-vim user and recently discovered that emacs has viper-mode, offering best of both worlds (at least for me). However one thing is really bothering me since I am mostly coding in python ...
2
votes
1answer
110 views

eval command onto other buffer in Emacs

I have a broken meta key and am trying to do M-x viper-mode onto an org file. I want elisp to run (viper-mode) onto the example.org file from the scratch buffer.
2
votes
1answer
413 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
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
1answer
630 views

how to get started with viper/vimpulse?

I obtained a git clone of vimpulse and followed the instructions for installation. It basically says to put (require 'vimpulse) in my .emacs file - but this will start viper/vimpulse upon startup, so ...
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
34 views

Issuing ElScreen's prefix key while in viper mode

I would like to use ElScreen in conjunction with viper & vimpulse. Here's how I have configured both packages in my .emacs file: (load "elscreen" "ElScreen" t) (elscreen-set-prefix-key "\C-\\") ...
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
193 views

Getting YASnippet and viper-mode to work together in emacs

I use viper-mode in emacs, but I want to use YASnippet as well. However, when I enable viper-mode and try using tab-completion through YASnippet, nothing happens. How do I get the two of them to work ...
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 ...
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
65 views

Invoke single normal-mode command with Ctrl-o in Vimpulse?

The usual behavior in vim is for C-o in insert-mode to allow the user to use one normal-mode command and then return to insert-mode. Following the suggestions in this comment, I've set ...
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
104 views

Getting viper-mode to play well with magit-key-mode

I use viper-mode in emacs and magit with magit-key-mode. Problem I am having is that I don't want viper to load in magit-key-mode as I then must hit Ctl-z to get into emacs mode before selecting a key ...
0
votes
2answers
292 views

viper-auto-indent breaks inferior modes

As a vim convert, I've gotten fairly used to viper mode. One issue that I've discovered, however, is that viper-auto-indent breaks all inferior modes. What happens is when I enter any sort of inferior ...