Como ya sabemos sublime text marca de manera automática los cierres de etiquetas pero que pasa si queremos mejorarlo o personalizarlo?. Te voy a presentar un plugin llamado brackethighlighter con el cual podrás personalizar tu sublime text.

Configuraciones para cambiar el estilo, tienes que modificar el archivo del plugin llamado bh_core.sublime-settings, tienes que buscar algo parecido a esto:
MÁS INFO http://facelessuser.github.io/BracketHighlighter/customize/#__code_46
Enlace al plugin
Editado

Configuraciones para cambiar el estilo, tienes que modificar el archivo del plugin llamado bh_core.sublime-settings, tienes que buscar algo parecido a esto:
"bracket_styles": {
// "default" and "unmatched" styles are special
// styles. If they are not defined here,
// they will be generated internally with
// internal defaults.
// "default" style defines attributes that
// will be used for any style that does not
// explicitly define that attribute. So if
// a style does not define a color, it will
// use the color from the "default" style.
"default": {
"icon": "dot",
// BH1's original default color for reference
// "color": "entity.name.class",
"color": "brackethighlighter.default",
"style": "underline"
},en la linea del style puedes elegir entre los siguientes estilos:"style": "underline" "style": "outline" //Estilo de la imagen "style": "highlight" "style": "solid"
MÁS INFO http://facelessuser.github.io/BracketHighlighter/customize/#__code_46
Enlace al plugin
Editado
1
Puntos
Puntos
3175
Visitas
Visitas
0
Resp
Resp
Por alber hace 10 años
Admin