Ejemplo n.º 1
0
		static int DeleteTemplateShortcutBeforeCaret (TextEditor editor)
		{
			int offset = editor.CaretOffset;
			int start  = FindPrevWordStart (editor, offset);
			editor.RemoveText (start, offset - start);
			return start;
		}