applidium / Vim

Port of the Vim text editor to the iOS
https://applidium.com/en
533 stars 100 forks source link

2 finger tap is easier than blackslash for input esc #9

Closed pinxue closed 12 years ago

pinxue commented 12 years ago

To input blackslash in iOS, we need switch to symbol keyboard by two click, not a good idea. Personally, I prefer to using two finger tap gesture as an alternative.

I have forked it as https://github.com/pinxue/Vim .

git diff is:

diff --git a/src/gui_ios.m b/src/gui_ios.m index ecd1f11..10b5e7a 100644 --- a/src/gui_ios.m +++ b/src/gui_ios.m @@ -128,7 +128,13 @@ enum blink_state {

@@ -199,6 +205,13 @@ enum blink_state { gui_send_mouse_event(MOUSE_LEFT, clickLocation.x, clickLocation.y, 1, 0); }

+- (void)click2f:(UITapGestureRecognizer *)sender {

Ecco commented 12 years ago

Thanks for the patch @pinxue ! However I won't pull this in, as it isn't user-customizable. Sure backslash isn't the best solution. But at least it's something users can change without rebuilding Vim.

In that case, I think the proper fix would be to solve issue #3 by adding gestures as mappable objects.

Thanks a lot for your time though !