提交 6c1ba5ed 编写于 作者: C CyrusNajmabadi

Fix automation object for integration tests.

上级 19086fb4
......@@ -183,10 +183,16 @@ public int Indent_UnindentLabels
}
}
public EnterKeyRule InsertNewlineOnEnterWithWholeWord
public int InsertNewlineOnEnterWithWholeWord
{
get { return GetOption(CompletionOptions.EnterKeyBehavior); }
set { SetOption(CompletionOptions.EnterKeyBehavior, value); }
get { return (int)GetOption(CompletionOptions.EnterKeyBehavior); }
set { SetOption(CompletionOptions.EnterKeyBehavior, (EnterKeyRule)value); }
}
public int EnterKeyBehavior
{
get { return (int)GetOption(CompletionOptions.EnterKeyBehavior); }
set { SetOption(CompletionOptions.EnterKeyBehavior, (EnterKeyRule)value); }
}
public int NewLines_AnonymousTypeInitializer_EachMember
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册