DJMcMayhem / V

A golfing language inspired by everybody's favorite text editor, vim.
77 stars 9 forks source link

Arrow keys #23

Open oktupol opened 6 years ago

oktupol commented 6 years ago

In vim, using the arrow keys is one way to move around while in Insert-mode. Using them may sometimes save bytes, if you don't have to move too far and if you want to end up in the same mode as before (compare <Right> with <C-o>l, or <Right><Right><Right> with <C-o>3l)

Is there a way to incorporate arrow key presses in V-programs? I tried using <Right> with the -v flag, but that didn't work.