I know overhauls for the assembler are planned, but one that I'd like to see if it isn't already planned is "include" directives. (that's the best name I could make up for them off my head)
An include directive looks for another program in the assembly editor window with the name that matches whatever is provided in the argument, and replaces the "include" directive with the binary of that program.
So, something like libraries, but in assembler. Pretty sure that's a feature in most assemblers, and especially in high level languages. In fact, IIRC, when you write something like #include <stdio.h> in c, it essentially represents that same instruction in assembly.