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
Describe the problem:
Whenever I try to paste multiple lines of code into tabby, the line breaks and spaces before the first line of the code are automatically removed, causing me to adjust the indentation of the code every time before pasting the code, This situation has no similar problem in iterm2 and hyper or native macos terminal.
To Reproduce:
My python code with line indent like this:
a=1foriinrange(3):
print(a+i)
then copy it into tabby shows like this:
> ipython
Python 3.8.11 (default, Sep 1 2021, 12:33:46)
Type 'copyright', 'credits' or 'license'for more information
IPython 8.3.0 -- An enhanced Interactive Python. Type '?'for help.
In [1]: a = 1
...: foriin range(3):
...: print(a + i)
Input In [1]
foriin range(3):
^
IndentationError: unexpected indent
I don't think it's a problem to remove the indentation and line breaks before the code when pasting a single line of code, but when pasting multiple lines, it is best to keep the indentation of all lines, or there is an option in the configuration, such as when pasting multiple lines. , whether to automatically remove first line indentation and line breaks
The text was updated successfully, but these errors were encountered:
Describe the problem:
Whenever I try to paste multiple lines of code into tabby, the line breaks and spaces before the first line of the code are automatically removed, causing me to adjust the indentation of the code every time before pasting the code, This situation has no similar problem in iterm2 and hyper or native macos terminal.
To Reproduce:
My python code with line indent like this:
then copy it into tabby shows like this:
I don't think it's a problem to remove the indentation and line breaks before the code when pasting a single line of code, but when pasting multiple lines, it is best to keep the indentation of all lines, or there is an option in the configuration, such as when pasting multiple lines. , whether to automatically remove first line indentation and line breaks
The text was updated successfully, but these errors were encountered: