Update some docs

This commit is contained in:
Zachary Yedidia
2019-09-02 14:40:50 -04:00
parent 5dfaaf8856
commit b41fc10b8f
8 changed files with 59 additions and 94 deletions

View File

@@ -1467,3 +1467,7 @@ func (h *BufPane) RemoveAllMultiCursors() bool {
h.multiWord = false
return true
}
func (h *BufPane) None() bool {
return false
}

View File

@@ -510,6 +510,7 @@ var BufKeyActions = map[string]BufKeyAction{
"RemoveAllMultiCursors": (*BufPane).RemoveAllMultiCursors,
"SkipMultiCursor": (*BufPane).SkipMultiCursor,
"JumpToMatchingBrace": (*BufPane).JumpToMatchingBrace,
"None": (*BufPane).None,
// This was changed to InsertNewline but I don't want to break backwards compatibility
"InsertEnter": (*BufPane).InsertNewline,