difftastic icon indicating copy to clipboard operation
difftastic copied to clipboard

Missing intermediate unchanged lines in inline display

Open Wilfred opened this issue 3 years ago • 9 comments

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;
  };
}

Wilfred avatar Sep 03 '22 01:09 Wilfred

This is really misleading and I don't think I can use inline with this bug, here's an example of how it looks:

tmp

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

voidus avatar Sep 25 '22 22:09 voidus

Can this issue be prioritized? :pray: inline mode is unusable with this bug.

Here's a Go example: 2023-09-03-225543_895x160_scrot

And correctly shown by delta: 2023-09-03-225700_810x184_scrot

imiric avatar Sep 03 '23 21:09 imiric