Ejemplo n.º 1
0
 public override void Execute(object arg)
 {
     ViSDGlobalCount.ResetCommand();
     ViSDGlobalText.UpdateMove(movecur, arg);
     movecur.Execute(arg);
     ViSDGlobalState.State = State.Insert;
 }
Ejemplo n.º 2
0
        public void Execute(object arg)
        {
            TextArea ta;

            if ((ta = arg as TextArea) != null)
            {
                IViCommand rep = new CmdRepeatReplaceString(ta.Selection.Length);
                ViSDGlobalText.UpdateMove(rep, arg);
                ta.Selection.ReplaceSelectionWithText(ta, "");
                ViSDGlobalState.State = State.Insert;
            }
        }
Ejemplo n.º 3
0
 public void Execute(object arg)
 {
     ViSDGlobalText.Reset();
     ViSDGlobalCount.ResetCommand();
     ViSDGlobalState.State = State.Insert;
 }