Questions tagged [vimpulse]

24 questions
0
votes
1 answer

org-read-date fails when running vimpulse

I get an error about rebinding a key sequence (see below). So I'm guessing this is because vimpulse uses the ESC key on it's own, not as a replacement for META. I've got Vimpulse disabled in the minibuffer but i still get the problem. Any ideas? The…
Thomas Parslow
  • 5,712
  • 4
  • 26
  • 33
0
votes
3 answers

How many pixels is an impulse in box2d

I have a ball that you blow on with air. I want the ball to be blown more if it is close to the blower and blown less if it is farther away from the blower. I am using box2d and I am using the impulse function."body->ApplyLinearImpulse(force,…
user891123
  • 379
  • 2
  • 5
  • 16
0
votes
2 answers

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?
Natan Yellin
  • 6,063
  • 5
  • 38
  • 57
0
votes
1 answer

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 (vimpulse-imap "\C-o" 'viper-escape-to-vi) But when I press…
hatmatrix
  • 42,883
  • 45
  • 137
  • 231
0
votes
1 answer

Need with a momentum and impulse physics question on image below 6.3

[grade 12 momentum -physics questions need assisance with 6.3][1] How to calculate the final velocity of a body given two graphs of two objects of net force versus time [1]: https://i.stack.imgur.com/u7UZq.jpg
0
votes
1 answer

remapping and in Vimpulse to scroll more

In Some Thoughts on Emacs and Vim, Shinobu recommendation to remap and doesn't work on Emacs 2.3.1 with Vimpulse 0.5. What am I doing wrong? ;; from .emacs ; simulate vim's "nnoremap 1010j" (vimpulse-map " " (lambda…
Natan Yellin
  • 6,063
  • 5
  • 38
  • 57
0
votes
1 answer

Deconvolution of sound using matlab

[y,fs]=wavread('C:\Users\Mohamed\Desktop\sinesweeprec.wav') [x,fs]=wavread('C:\Users\Mohamed\Desktop\sinesweep.wav') a=fft(x) b=fft(y) h=ifft(b/a) So I use this code in order to get the impulse response of a room but I get this error ('Error…
0
votes
1 answer

How to apply impulse on chipmunk body on a specific direction?

i am using: cpVect vector1=cpv(angle, 400); [body applyForce:vector1 offset:vector1]; but this not working well as needed to put a correct angle using touch screen below line of code used for getting angle -(void)ccTouchesMoved:(NSSet *)touches…
Pankaj Bhardwaj
  • 2,081
  • 1
  • 17
  • 37
0
votes
1 answer

ApplyLinearImpulse method

In transformPosition method we can apply angle for specific sprite as given below; [sprite transformPosition:ccpAdd(sprite.position, ccpMult(ccpForAngle(angle), ANY_VELOCITY))]; Is it possible to use angle and velocity in ApplyLinearImpulse…
stack
  • 951
  • 3
  • 9
  • 23
1
2