View Single Post
addons_zz
Veteran Member
Join Date: Aug 2015
Location: Dreams, zz
Old 03-17-2019 , 14:01   Re: [TUT] Compiling AMXX plugins with Sublime Text
Reply With Quote #161

Quote:
Originally Posted by OciXCrom View Post
How can I change it back? Or is there a good reason why you changed it?
No good reason. I think it was because once my Ctrl Key was bugged, then, I added the `Alt` modifier.

You can change it back by going on the menu: `Preferences -> Mouse Bindings` and add this to your mouse-bindings file:

Code:
[
    {
        "button": "button1", "count": 1, "modifiers": ["ctrl"],
        "press_command": "drag_select",
        "press_args": {"additive": true}
    },
]
Note: The menu entry `Preferences -> Mouse Bindings` is not available on the standard/default Sublime Text. Only in the one you installed from me/here.

Quote:
Originally Posted by iceeedr View Post
Currently the key that compiles is F7, how to switch it to F9 for example?
You can change it back by going on the menu: `Preferences -> Key Bindings` and add this to your key-bindings file:
Code:
[
    { "keys": ["f9"], "command": "fix_sublime_text_output_build" },
]
__________________
Plugin: Sublime Text - ITE , Galileo
Multi-Mod: Manager / Plugin / Server

Support me on Patreon, Ko-fi, Liberapay or Open Collective

Last edited by addons_zz; 03-17-2019 at 14:09.
addons_zz is offline