Changeset 2411


Ignore:
Timestamp:
Apr 25, 2011, 6:10:44 PM (14 years ago)
Author:
Andreas Schnellbacher
Message:
  • Fixed pos. after paste: Move to pos. after the pasted text, not to last char of it, to behave like other editors.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/netlabs/macros/clipbrd.e

    r2398 r2411  
    55* Copyright (c) Netlabs EPM Distribution Project 2002
    66*
    7 * $Id: clipbrd.e,v 1.13 2009-10-26 23:12:02 aschn Exp $
     7* $Id: clipbrd.e,v 1.14 2011-04-25 16:10:44 aschn Exp $
    88*
    99* ===========================================================================
     
    322322      call psave_mark(savemark)                        -- Save the user's mark
    323323      call GetBuffCommon( result, NOTHING_TO_PASTE__MSG, chr(mark))
    324       -- Two cases join here, in the middle of this IF statement.
    325324      call prestore_mark(savemark)                     -- Restore the user's mark
     325
     326      -- Fix: Move to char after the pasted text, not to the last char of
     327      -- the pasted text, to behave like other editors
     328      if .col > 1 then
     329         .col = .col + 1
     330      endif
     331
    326332   else
    327333      oldsize = .last
Note: See TracChangeset for help on using the changeset viewer.