Skip to content

Instantly share code, notes, and snippets.

@kconragan
Last active July 10, 2026 03:56
Show Gist options
  • Select an option

  • Save kconragan/2510186 to your computer and use it in GitHub Desktop.

Select an option

Save kconragan/2510186 to your computer and use it in GitHub Desktop.
Enable key repeat in Apple Lion for Sublime Text in Vim mode
# Mac OS X Lion introduced a new, iOS-like context menu when you press and hold a key
# that enables you to choose a character from a menu of options. If you are on Lion
# try it by pressing and holding down 'e' in any app that uses the default NSTextField
# for input.
#
# It's a nice feature and continues the blending of Mac OS X and iOS features. However,
# it's a nightmare to deal with in Sublime Text if you're running Vintage (Vim) mode,
# as it means you cannot press and hold h/j/k/l to move through your file. You have
# to repeatedly press the keys to navigate.
# You can disable this feature for just Sublime Text by issuing the following command
# in your terminal (*not* the Sublime Text console):
defaults write com.sublimetext.4 ApplePressAndHoldEnabled -bool false
# Note: replace com.sublimetext.4 with whichever version of Sublime Text you are running
# eg. 'com.sublimetext.2' or 'com.sublimetext.3'
# Alternately, if you want this feature disabled globally, you can enter this:
defaults write -g ApplePressAndHoldEnabled -bool false
# In either case you'll need to restart Sublime Text for the change to take place.
# Happy coding!
@alexvbush

Copy link
Copy Markdown

thanks!

@gaojun0816

Copy link
Copy Markdown

that's really help. thanks a lot!

@meAmidos

meAmidos commented Apr 3, 2017

Copy link
Copy Markdown

👍

@nathanin

Copy link
Copy Markdown

Seems to have worked (10.11.5)

Side note, does this have to be run each time the computer is restarted? If so, is it safe to add the line to my .bashrc ? Thanks if anyone answers!

@mbprabowo

mbprabowo commented May 4, 2017

Copy link
Copy Markdown

In macOS Sierra 10.12.4 works perfectly !!!

Thank you very much !

@naveedtariq

Copy link
Copy Markdown

thanks (y)

@simonvomeyser

Copy link
Copy Markdown

Thank you for this! 👍

@flipjs

flipjs commented May 30, 2017

Copy link
Copy Markdown

Yosemite here at work. This is very helpful! Thank you!

@kychris

kychris commented Jul 29, 2017

Copy link
Copy Markdown

Thank you so much, it works. Greatly improved my efficiency (=゚ω゚)ノ.

@zhl108

zhl108 commented Sep 15, 2017

Copy link
Copy Markdown

god like

@amlestin

Copy link
Copy Markdown

Still works in Sierra. Thanks!

@ganeshkondal

Copy link
Copy Markdown

yup !! it still works & thank you....

@integrii

Copy link
Copy Markdown

Thank you!!!!!

@ishanray

Copy link
Copy Markdown

thanks

@pawelkleczek

Copy link
Copy Markdown

thank you

@aManNamedTed

Copy link
Copy Markdown

still works! thanks so much 😁

@anukem

anukem commented Aug 13, 2018

Copy link
Copy Markdown

Thank you! Still works

@zjiayao

zjiayao commented Aug 20, 2018

Copy link
Copy Markdown

Worked, thanks!

@Drowze

Drowze commented Aug 29, 2018

Copy link
Copy Markdown

Worked perfectly, cheers.

@joshuapinter

Copy link
Copy Markdown

tenor

@zqWu

zqWu commented Dec 6, 2018

Copy link
Copy Markdown

!!great

@Jeferry

Jeferry commented May 28, 2019

Copy link
Copy Markdown

+1 Thank you!It works!

@jocho-here

Copy link
Copy Markdown

Wow Thanks! Still works :)

@VuongTran21

Copy link
Copy Markdown

Thanks, it worked for me. Btw, I wonder, will .vimrc apply for Vintage in Sublime Text 3?

@eproxus

eproxus commented Mar 4, 2021

Copy link
Copy Markdown

For anyone on the Sublime Text 4 dev version just change the version to 4:

defaults write com.sublimetext.4 ApplePressAndHoldEnabled -bool false

@sp4c38

sp4c38 commented May 22, 2021

Copy link
Copy Markdown

Only works for me if I turn off press and hold globally. Tried multiple things but couldn't get it to deactivate only for Sublime Text (macOS Big Sur 11.4).

@frankfarm

Copy link
Copy Markdown

I confirm that to make this work in Sublime Text released on May 21, 2021, aka Sublime Text 4 aka Build 4107 aka ST4, the solution provided above by @eproxus works.

defaults write com.sublimetext.4 ApplePressAndHoldEnabled -bool false

@atkmh66

atkmh66 commented Feb 18, 2022

Copy link
Copy Markdown

2022 , Sublime 4 . Technique Still works !
Great tip. Thanks !

@tylermako

Copy link
Copy Markdown

Still works with Sublime 4, so happy this is a thing 💯

@izheynes

Copy link
Copy Markdown

Still working in 2026 with macOS Tahoe and Sublime 4. Thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment