Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Default key bindings conflict with normal text editing #26

Open
tcard opened this issue Jul 11, 2018 · 4 comments
Open

Default key bindings conflict with normal text editing #26

tcard opened this issue Jul 11, 2018 · 4 comments

Comments

@tcard
Copy link

tcard commented Jul 11, 2018

The default key bindings "gd" and "gh" are triggered when you attempt to write those character sequences as text. You can't, for example, write "height" without Godef getting in the way. This is very annoying.

#25 is a manifestation of this.

@jaytaylor
Copy link

Also found Sublime unable to type "gh" since the past few months or perhaps more.

This was a real bear to track down.

Keywords: Sublime Text 3 unable to type words containing G-H or G-D

@jaytaylor
Copy link

Appears it was introduced on May 10th 2018 with e3e06a7.

@jaytaylor
Copy link

Manually fixed for now by editing all Godef/Default*.sublime-keymap files and replacing the contents with:

[
    { "keys": ["ctrl+shift+d"], "command": "godef" } 
    // { "keys": ["g","d"], "command": "godef" },
    // { "keys": ["g","h"], "command": "godef_prev" }
]

@buaazp
Copy link
Owner

buaazp commented Jan 10, 2019

OK, I will change the default key later.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants