This plugin adds a way to edit both plugin and theme files in a text editor of your choice, and have them automatically update inside Blockbench upon you saving the file.
When a plugin file is being watched for changes, it's about.md file will be automatically watched for changes too.
Theme files support both .bbtheme and .css files being watched.
To watch a file, have a theme or plugin file ready, then go to Help > Developer > Live Dev Reloader. From here, select Watch plugin or theme file, then select your plugin or theme file.
To stop watching a file, go to Help > Developer > Live Dev Reloader and select Stop watching plugin or theme file.
To have a plugin or theme continue to be watched next time Blockbench is loaded, enable persistent mode. This can be found at Help > Developer > Live Dev Reloader > Persist after restart.
<style>
.about {
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
}
#about-content {
overflow-y: auto;
min-height: 128px;
}
#about-markdown-links {
display: flex;
justify-content: space-around;
margin: 20px 20px 0;
}
#about-markdown-links > a {
display: flex;
flex-direction: column;
align-items: center;
gap: 5px;
padding: 5px;
text-decoration: none;
flex-grow: 1;
flex-basis: 0;
color: var(--color-subtle_text);
text-align: center;
}
#about-markdown-links > a:hover {
background-color: var(--color-accent);
color: var(--color-light);
}
#about-markdown-links > a > i {
font-size: 32px;
width: 100%;
max-width: initial;
height: 32px;
text-align: center;
}
#about-markdown-links > a:hover > i {
color: var(--color-light) !important;
}
#about-markdown-links > a > p {
flex: 1;
display: flex;
align-items: center;
margin: 0;
}
</style>