Author Topic: "Return" inserts new line below current line?  (Read 1923 times)

rgloden

  • Senior Community Member
  • Posts: 169
  • Hero Points: 5
"Return" inserts new line below current line?
« on: February 23, 2018, 04:28:20 AM »
SlickEdit Pro 2016 (v21.0.3.0 64-bit)
Emulation: CUA

OS: Windows 10 x64
OS Version: 10.00.0 
Project Type: Cpp
Language: .adb (Ada)

Using the following Ada sample, place cursor at beginning of buffer, hit enter, and SE inserts a new line below the first line (expected <CR> inserted before first line instead of after).

Code: [Select]
package body time_helper is

   procedure get_time;

end time_helper;

Results:
Code: [Select]
package body time_helper is


   procedure get_time;

end time_helper;

Clark

  • SlickEdit Team Member
  • Senior Community Member
  • *
  • Posts: 6864
  • Hero Points: 528
Re: "Return" inserts new line below current line?
« Reply #1 on: February 23, 2018, 04:24:05 PM »
Added a hot fix for this for v22. Will be in the next hot fix build.

rgloden

  • Senior Community Member
  • Posts: 169
  • Hero Points: 5
Re: "Return" inserts new line below current line?
« Reply #2 on: March 14, 2018, 04:58:19 AM »
Thanks ... Hotfix works.