Hello community,
I am new to coding but would like to use sublime as my markdown writer.
I need to type in Japanese, and therefor there are lots of keybindings that get into conflict with this.
What I want to do:
I need to remove the “tab” function after I have typed, since we use it to select the characters we want (the kanji). But I want to keep the “tab” function if nothing is typed in.
In many guides they tell me to add “//” in front of these lines: (94-101)
[code] { “keys”: “tab”], “command”: “insert_best_completion”, “args”: {“default”: “\t”, “exact”: true} },
{ “keys”: “tab”], “command”: “insert_best_completion”, “args”: {“default”: “\t”, “exact”: false},
“context”:
{ "key": "setting.tab_completion", "operator": "equal", "operand": true }
]
},[/code]
But in ST3, it seems to be impossible to save them in “default”, and if I copy them into the “user key-bindings” with “//” in front of it, it still won’t work properly…
Can anyone help me with this?