Page 1 of 1

Pasting text

Posted: Sun Jul 30, 2017 8:00 pm
by Thomas Lohrum
Hi Alex,

i think with 3.8 the pasting behaviour changed. Or maybe the shortcut got switched. Seems like i now have to press Ctrl+Alt+V instead of just pressing Ctrl+V to paste text to a list. What is the benefit of this? Is it configurable?

Thomas

Re: Pasting text

Posted: Mon Jul 31, 2017 12:06 pm
by CintaNotes Developer
Most probably a side effect of supporting pasting of HTML. However I can paste into a list, so will need a more specific example from you.

Re: Pasting text

Posted: Tue Aug 01, 2017 3:32 pm
by Thomas Lohrum
Hi Alex,

the problem is that when copying a list and pasting it to another note's list, the original list gets transformed to a single item.

Example

Source
  • line 1
    sub1
  • line 2
    sub2
  • line 3
    sub3


Pasted
  • line 1
    sub1
    line 2
    sub2
    line 3
    sub3

Re: Pasting text

Posted: Wed Aug 02, 2017 6:13 am
by CintaNotes Developer
1) What do you have selected in Options/Clipping/Formatting?
2) How exactly do you copy and how exactly do you paste?
Thanks!

Re: Pasting text

Posted: Wed Aug 02, 2017 9:08 pm
by Thomas Lohrum
CintaNotes Developer wrote:1) What do you have selected in Options/Clipping/Formatting?

Both options are enabled.
CintaNotes Developer wrote:2) How exactly do you copy and how exactly do you paste?

By pressing Ctrl+V. When i press Ctrl+Alt+V it's ok. My point is, that the default behaviour seems to have switched. I like it the other way.

Re: Pasting text

Posted: Fri Aug 04, 2017 1:25 pm
by CintaNotes Developer
I get completely different result!
Here's what I do:

1) Create a new note
2) Make a bullet list

Code: Select all

     * line1
       sub1
     * line2
       sub2
     * line3
       sub3
 

3) Press enter 3 times
4) Make another bullet list

Code: Select all

     * line4
     * line5


5) Select from before line1 through end of sub3 and press Ctrl+C
6) Please cursor at the end of line4 and press Ctrl+V
7) Here's what I get:

Code: Select all

   * line4
   * line1
   *   sub1
   * line2
   *   sub2
   * line3
   *   sub3
   * line5
 

Re: Pasting text

Posted: Fri Aug 04, 2017 1:29 pm
by CintaNotes Developer
Wait a sec, that was with RTF formatting retaining off. With RTF on, I get better result:

Code: Select all

* line4
* line1
  sub1
* line2
  sub2
* line3
  sub3
* line5