html - sublime 3 adds extra angular bracket on autocomplete -


i find on sublime 3 if autocomplete code angular bracket.

for example, if start writing "<ht", option autocomplete html tag, code produced looks this:

<<!doctype html> <!-- angle bracket here --> <html> <head>     <title></title> </head> <body>  </body> </html> 

which quite annoying. how fix this? i'm not sure on other autocompletion this. i'd start using feature more once know how works , if can adjust style

okay, found solution, keep in mind, might bug in coming updates.

first goto installation destination , open folder packages, in there open html.sublime-package archive , copy content in seperate folder on desktop. in new folder, edit file html.sublime-snippet , change

<content><![cdata[<!doctype html> 

to

<content><![cdata[!doctype html> 

this should solve problem.


Comments

Popular posts from this blog

c# - Validate object ID from GET to POST -

node.js - Custom Model Validator SailsJS -

php - Find a regex to take part of Email -