How to insert TAB without triggering autocomplete? #3129
-
Is there a way to insert the TAB character after some word, without triggering autocomplete that cycles through words in the text starting with the current word? For example Sublime Text uses Sometimes, I need to write e.g. config files which have TAB-delimited columns to set paths, parameters, variables etc. I keep running into a problem when I write a column and want to insert TAB to start writing in new column, but Consider this example from legofit docs:
Here, the last line starts with a parameter type |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
(Greetings from a fellow bioinformaticist!) You'll need to add an entry in your
If you're ok remapping that to always inserting a plain tab you'll need to add this entry:
More information about bindings here: https://github.com/zyedidia/micro/blob/master/runtime/help/keybindings.md |
Beta Was this translation helpful? Give feedback.
(Greetings from a fellow bioinformaticist!)
You'll need to add an entry in your
bindings.json
. The key combo you're talking about is referred to asBackTab
in micro (notShiftTab
as I expected), and by default it's set to:If you're ok remapping that to always inserting a plain tab you'll need to add this entry:
More information about bindings here: https://github.com/zyedidia/micro/blob/master/runtime/help/keybindings.md