spyder-ide / spyder

Official repository for Spyder - The Scientific Python Development Environment
https://www.spyder-ide.org
MIT License
8.33k stars 1.61k forks source link

characters disapear when indenting lines pastes with tabs in it (my indent is spaces) #14038

Open thierryhedde opened 4 years ago

thierryhedde commented 4 years ago

Description

What steps will reproduce the problem?

    doc = KML.kml(
        KML.Placemark(
            KML.name(areaName),
            KML.MultiGeometry(
                KML.Polygon(
                    KML.outerBoundaryIs(
                        KML.LinearRing(
                            KML.coordinates("""
                    6.2617340087890625,43.817649841308594
                    6.2622528076171875,43.82663154602051
                    6.2747039794921875,43.82625961303711
                    6.2741851806640625,43.81727600097656
                    6.2617340087890625,43.817649841308594
                                            """
                                             )
                        )
                    )
                )
            )
        )
    )

if you try to indent (with tab key) the coordinates lines, the first digits at the begining of each line will disappear. these lines were copy/paste from another file and they contains tabs I think my indentation tuning is with 4 spaces thanks

Versions

Dependencies


# Mandatory:
atomicwrites >=1.2.0           :  1.4.0 (OK)
chardet >=2.0.0                :  3.0.4 (OK)
cloudpickle >=0.5.0            :  1.5.0 (OK)
diff_match_patch >=20181111    :  20200713 (OK)
intervaltree                   :  None (OK)
IPython >=4.0                  :  7.16.1 (OK)
jedi =0.17.1                   :  0.17.1 (OK)
nbconvert >=4.0                :  5.6.1 (OK)
numpydoc >=0.6.0               :  1.1.0 (OK)
paramiko >=2.4.0               :  2.7.1 (OK)
parso =0.7.0                   :  0.7.0 (OK)
pexpect >=4.4.0                :  4.8.0 (OK)
pickleshare >=0.4              :  0.7.5 (OK)
psutil >=5.3                   :  5.7.0 (OK)
pygments >=2.0                 :  2.6.1 (OK)
pylint >=1.0                   :  2.5.3 (OK)
pyls >=0.34.0;<1.0.0           :  0.34.1 (OK)
qdarkstyle >=2.8               :  2.8.1 (OK)
qtawesome >=0.5.7              :  0.7.2 (OK)
qtconsole >=4.6.0              :  4.7.5 (OK)
qtpy >=1.5.0                   :  1.9.0 (OK)
rtree >=0.8.3                  :  0.9.4 (OK)
sphinx >=0.6.6                 :  3.1.2 (OK)
spyder_kernels >=1.9.2;<1.10.0 :  1.9.2 (OK)
watchdog                       :  None (OK)
zmq >=17                       :  19.0.1 (OK)

# Optional:
cython >=0.21                  :  0.29.21 (OK)
matplotlib >=2.0.0             :  3.2.2 (OK)
numpy >=1.7                    :  1.18.5 (OK)
pandas >=0.13.1                :  1.0.5 (OK)
scipy >=0.17.0                 :  1.5.0 (OK)
sympy >=0.7.3                  :  1.6.1 (OK)
thierryhedde commented 4 years ago

If you copy/paste the lines above into your spyder editor, you can reproduce the bug by trying to indent the numbers. I've check it works

thierryhedde commented 4 years ago

image

my editing tuning (sorry it's in french) with 4 spaces for indentation

dalthviz commented 4 years ago

Hi @thierryhedde thanks for the feedback! I was able to reproduce this behavior. For now, one way to workaround this problem is selecting more than one line when indenting:

indent

We will check this for a future release 👍