difftastic
difftastic copied to clipboard
Missing intermediate unchanged lines in inline display
Before.nix:
{config, ...}:
{
programs.direnv = {
enable = true;
enableBashIntegration = true;
};
}
{
programs.direnv = {
enable = true;
enableBashIntegration = true;
};
}
After.nix:
{config, ...}:
{
programs.direnv = {
enable = true;
enableBashIntegration = true;
nix-direnv.enable = true;
};
}
{
programs.direnv = {
enable = true;
enableBashIntegration = true;
nix-direnv.enable = true;
};
}
This is really misleading and I don't think I can use inline with this bug, here's an example of how it looks:

bot.py --- 2/14 --- Python
99
100 @client.event
101 async def on_ready():
102 await client.change_presence()
103 print('We have logged in as {0.user}'.format(client))
110 if not message.content.startswith('$'):
112 elif '\n' in message.content:
105 print("We have logged in as {0.user}".format(client))
113 if not message.content.startswith("$"):
115 elif "\n" in message.content:
116 await error_message(
117 message.channel, "Can't use multiline messages when using commands."
118 )
119 return
Can this issue be prioritized? :pray: inline mode is unusable with this bug.
Here's a Go example:
And correctly shown by delta: