copy without selection ?

copy without selection ?

4

    Oct 08, 2004#1

    hi

    is it possible to copy the current line without having to make a selection (ie. ctrl+c copies the whole line at the cursor if something isn't currently selected) ?

    thanks

    Jonathan

    6,602548
    Grand MasterGrand Master
    6,602548

      Oct 08, 2004#2

      Only with a macro, but the cursor is always positioned to column 1 of the active line.

      Macro for copying actual line without line break

      InsertMode
      ColumnModeOff
      HexOff
      UnixReOff
      Key HOME
      StartSelect
      Key END
      Copy
      EndSelect
      Key HOME

      Macro for copying actual line with line break

      InsertMode
      ColumnModeOff
      HexOff
      UnixReOff
      Key HOME
      StartSelect
      Key Ctrl+DOWN ARROW
      Copy
      EndSelect
      Key UP ARROW

      Edited on 2006-09-12: Since v11.00 there is also a configuration option for this issue - see Configuration - Editor - Miscellaneous - Enable copy/append of current line when no selection is active.
      Best regards from an UC/UE/UES for Windows user from Austria

      4

        Jan 13, 2005#3

        thanks Mofi

        (I forgot all about my post !)

        Jonathan