Exemplo n.º 1
0
func (m Mover) Exec(editor *editor.CodeEditor) {
	if editor.Controller().Deselect(true) {
		return
	}
	m.EditorCommand.Exec(editor)
}
Exemplo n.º 2
0
func (SelectLineStart) Exec(editor *editor.CodeEditor) {
	editor.Controller().SelectHome()
}
Exemplo n.º 3
0
func (s Scroller) Exec(editor *editor.CodeEditor) {
	s.EditorCommand.Exec(editor)
	editor.ScrollToRune(editor.Controller().FirstCaret())
}
Exemplo n.º 4
0
func (SelectLineEnd) Exec(editor *editor.CodeEditor) {
	editor.Controller().SelectEnd()
}
Exemplo n.º 5
0
func (LineStart) Exec(editor *editor.CodeEditor) {
	editor.Controller().MoveHome()
}
Exemplo n.º 6
0
func (SelectNextLine) Exec(editor *editor.CodeEditor) {
	editor.Controller().SelectDown()
}
Exemplo n.º 7
0
func (LineEnd) Exec(editor *editor.CodeEditor) {
	editor.Controller().MoveEnd()
}
Exemplo n.º 8
0
func (NextWord) Exec(editor *editor.CodeEditor) {
	editor.Controller().MoveRightByWord()
}
Exemplo n.º 9
0
func (SelectNextChar) Exec(editor *editor.CodeEditor) {
	editor.Controller().SelectRight()
}
Exemplo n.º 10
0
func (SelectPrevWord) Exec(editor *editor.CodeEditor) {
	editor.Controller().SelectLeftByWord()
}
Exemplo n.º 11
0
func (NextChar) Exec(editor *editor.CodeEditor) {
	editor.Controller().MoveRight()
}
Exemplo n.º 12
0
func (SelectPrevChar) Exec(editor *editor.CodeEditor) {
	editor.Controller().SelectLeft()
}
Exemplo n.º 13
0
func (PrevWord) Exec(editor *editor.CodeEditor) {
	editor.Controller().MoveLeftByWord()
}
Exemplo n.º 14
0
func (PrevChar) Exec(editor *editor.CodeEditor) {
	editor.Controller().MoveLeft()
}
Exemplo n.º 15
0
func (PrevLine) Exec(editor *editor.CodeEditor) {
	editor.Controller().MoveUp()
}
Exemplo n.º 16
0
func (SelectNextWord) Exec(editor *editor.CodeEditor) {
	editor.Controller().SelectRightByWord()
}
Exemplo n.º 17
0
func (SelectPrevLine) Exec(editor *editor.CodeEditor) {
	editor.Controller().SelectUp()
}
Exemplo n.º 18
0
func (NextLine) Exec(editor *editor.CodeEditor) {
	editor.Controller().MoveDown()
}