You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I see that assess-file loads a file with insert-file-contents. In a test I'm working on, I need to test with normally-inserted file contents like this, but also with insert-file-contents-literally. Is there a way that this could be supported in assess?
Thanks.
The text was updated successfully, but these errors were encountered:
With the implementation at the moment, this part of assess is not freely
extensible, which is something I need to think about it I guess, but you can
always convert the file itself.
To be honest, my implementation at the moment is a bit
round-about. assess-file currently returns a list which is interpreted by
assess-to-string, which then makes a string. Probably makes more sense if
assess-file (and assess-buffer) just returned the string directly.
Long delay! I've updated assess so that "assess-file" and the like so that they return strings directly. If you are still needing the "insert-file-contents-literally" it can be added easily now.
Hi again,
Thanks for the recent changes and new version.
I see that
assess-file
loads a file withinsert-file-contents
. In a test I'm working on, I need to test with normally-inserted file contents like this, but also withinsert-file-contents-literally
. Is there a way that this could be supported inassess
?Thanks.
The text was updated successfully, but these errors were encountered: