mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 02:10:05 +08:00
Add bookmarks
This commit is contained in:
parent
2172cff285
commit
bb3c24ec8f
@ -117,6 +117,9 @@ function! SpaceVim#layers#default#config() abort
|
||||
call SpaceVim#mapping#space#def('nnoremap', ['b', 'N', 'k'], 'new', 'new-empty-buffer-above', 1)
|
||||
call SpaceVim#mapping#space#def('nnoremap', ['b', 'N', 'l'], 'rightbelow vertical new', 'new-empty-buffer-right', 1)
|
||||
call SpaceVim#mapping#space#def('nnoremap', ['b', 'N', 'n'], 'enew', 'new-empty-buffer', 1)
|
||||
|
||||
" file mappings
|
||||
call SpaceVim#mapping#space#def('nnoremap', ['f', 'b'], 'Unite vim_bookmarks', 'unite-filtered-bookmarks', 1)
|
||||
endfunction
|
||||
|
||||
let s:file = SpaceVim#api#import('file')
|
||||
|
@ -58,6 +58,8 @@ title: "Documentation"
|
||||
* [Buffers and Files](#buffers-and-files)
|
||||
* [Buffers manipulation key bindings](#buffers-manipulation-key-bindings)
|
||||
* [Create a new empty buffer](#create-a-new-empty-buffer)
|
||||
* [Special Buffers](#special-buffers)
|
||||
* [Files manipulations key bindings](#files-manipulations-key-bindings)
|
||||
* [Auto-saving](#auto-saving)
|
||||
* [Searching](#searching)
|
||||
* [Editing](#editing)
|
||||
@ -763,6 +765,14 @@ Key Binding | Description
|
||||
`SPC b N l` | create new empty buffer in a new window below
|
||||
`SPC b N n` | create new empty buffer in current window
|
||||
|
||||
##### Special Buffers
|
||||
|
||||
In SpaceVim, there are many special buffers, these buffers are created by plugins or SpaceVim isself. and all of this buffers are not listed.
|
||||
|
||||
##### Files manipulations key bindings
|
||||
|
||||
Files manipulation commands (start with f):
|
||||
|
||||
### Auto-saving
|
||||
|
||||
### Searching
|
||||
|
Loading…
Reference in New Issue
Block a user