Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable Sublime Text 3 html autocomplete in Markdown

I am writing prose in Academic Markdown. Autocomplete can be pretty useful when recommends words from my document, but the HTML tags are very annoying.

How can I stop ST3 to stop suggesting HTML tags in my markdown files.

I have tried "auto_complete": false but this doesn't actually disable autocomplete. Don't know why.

like image 438
jonathanbsyd Avatar asked Oct 15 '15 04:10

jonathanbsyd


1 Answers

Thanks for the help from Hansimov. I still had some issues that inside Markdown other auto_complete stuff was happening. I found out that the package SublimeCodeIntel was causing it. I managed to disable autocompletion for Markdown by adding this into my user settings for SublimeCodeIntel:

"codeintel_exclude_scopes_from_complete_triggers": ["comment", "markdown"],

Hope this might help someone, who might have a similar problem like I did. (-;

like image 101
Manuel Senfft Avatar answered Sep 22 '22 01:09

Manuel Senfft