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-\\")
(setq viper-inhibit-startup-message t)
(setq viper-expert-level '5)
(setq viper-mode t)
(require 'vimpulse)
I cannot issue commands to ElScreen while in V
or I
states; I have to switch to the E
state first. In order to create a screen, I have to type: C-z C-\ c
. Once I'm done with creating a screen, I have to switch back to V
by typing C-z
again. How can I configure .emacs
so that I can issue commands directly to ElScreen without having to switch to the E
mode? I'm using Emacs 23.3.1.