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
string = "Affy ID Agilent ID Allergome Code longerrrrrrrrrr ID ID WormPep Protein ID XenBase Gene ID ZFIN ID"
results in
string = "Affy ID Agilent ID Allergome Code longerrrrrrrrrr ID ID WormPep
Protein ID XenBase Gene ID ZFIN ID"
I would assume that it should like so:
string = ("Affy ID Agilent ID Allergome Code longerrrrrrrrrr ID ID WormPep"
"Protein ID XenBase Gene ID ZFIN ID")
So what do I not understand?
Is there an option to stop vim-python-pep8-indent from wrapping in between strings?
The text was updated successfully, but these errors were encountered:
FantasticMrFux
changed the title
Problem with list of strings is broke at whitespaces and long strings
Problem with list of strings and long strings
Feb 20, 2020
I worked around this in my case, by essentially no longer using the textwidth option. I was setting it to 79 in my personal config. The bundle I'm using sets the default to 500. This means it effectively never triggers, since I almost never have lines that long.
Maybe my problem hast to do with my lack of understanding of the pep8 standards.
So if I have a list of strings like this:
when i
gq
I get the following resultWhich breaks my code
And under my understanding it should indent the line like so:
Second assuming I have this string:
results in
I would assume that it should like so:
So what do I not understand?
Is there an option to stop vim-python-pep8-indent from wrapping in between strings?
The text was updated successfully, but these errors were encountered: