SublimeText / LaTeXTools

LaTeX plugin for Sublime Text
https://latextools.readthedocs.io/
2.01k stars 365 forks source link

Strange popup before compiling #940

Open yaronhe opened 7 years ago

yaronhe commented 7 years ago

After the recent update, there exists a popup every time when I execute Ctrl+B.

popup

It is really strange, and greatly reduces the working efficiency.

Is there a way to close it. I can not find the settings in the DOC.

Thanks.

r-stein commented 7 years ago

You can just add a keybinding to overwrite the default one:

    {
        "keys": ["ctrl+b"], "command": "build",
        "context":
        [
            { "key": "selector", "operator": "equal", "operand": "text.tex.latex" }
        ]
    },

May be a good idea to make this opt-out for ST2.

yaronhe commented 7 years ago

Thank you very much It works~ :)

PinkieBoadicea commented 7 years ago

Yay! I finally found someone with the same problem I'm dealing with! I just need some more clarification. Where do add this keybinding?

r-stein commented 7 years ago

Just add it to your Key Bindings - User

PinkieBoadicea commented 7 years ago

There are no instructions in the README on where the key bindings are located. Can you tell me where the key bindings are located?

r-stein commented 7 years ago

Just select from the main menu Preferences > Key Bindings - User.

If the file is empty add:

[
    {
        "keys": ["ctrl+b"], "command": "build",
        "context":
        [
            { "key": "selector", "operator": "equal", "operand": "text.tex.latex" }
        ]
    }
]

Otherwise add

    {
        "keys": ["ctrl+b"], "command": "build",
        "context":
        [
            { "key": "selector", "operator": "equal", "operand": "text.tex.latex" }
        ]
    },

to the top behind the first opening [

PinkieBoadicea commented 7 years ago

Awesome! Thank you so much! 2017/01/17 17:08 "Richard Stein" notifications@github.com:

Just select from the main menu Preferences > Key Bindings - User.

If the file is empty add:

[ { "keys": ["ctrl+b"], "command": "build", "context": [ { "key": "selector", "operator": "equal", "operand": "text.tex.latex" } ] } ]

Otherwise add

{
    "keys": ["ctrl+b"], "command": "build",
    "context":
    [
        { "key": "selector", "operator": "equal", "operand": "text.tex.latex" }
    ]
},

to the top behind the first opening [

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/SublimeText/LaTeXTools/issues/940#issuecomment-273047522, or mute the thread https://github.com/notifications/unsubscribe-auth/AX-sTVoFKu8_PmxPzkxPHnO-5ygUs0ndks5rTHbygaJpZM4Kw_YA .

diego898 commented 7 years ago

I think this issue can be closed (and this comment deleted once its closed!)

PinkieBoadicea commented 7 years ago

Yup, I agree