'e' -> empty, 'i' -> empty + insert mode
This commit is contained in:
parent
4533f7f7e4
commit
74a5d12785
|
@ -19,7 +19,8 @@ _1)_ If you start Vim without giving any filenames to it (or pipe stuff to it so
|
||||||
|
|
||||||
You can reopen the screen via :Startify.
|
You can reopen the screen via :Startify.
|
||||||
|
|
||||||
If you want to open an empty buffer, hit either 'e' or 'i'. Quit via 'q'.
|
Moreover, 'e' creates an empty buffer, 'i' creates an empty buffers and
|
||||||
|
jumps into insert mode, 'q' quits.
|
||||||
|
|
||||||
_2)_ It eases handling of loading and saving sessions by only working with a
|
_2)_ It eases handling of loading and saving sessions by only working with a
|
||||||
certain directory. Two commands are used for convenience:
|
certain directory. Two commands are used for convenience:
|
||||||
|
|
|
@ -54,7 +54,8 @@ Startify basically provides two things:
|
||||||
|
|
||||||
You can reopen the screen via :Startify.
|
You can reopen the screen via :Startify.
|
||||||
|
|
||||||
If you want to open an empty buffer, hit either 'e' or 'i'. Quit via 'q'.
|
Moreover, 'e' creates an empty buffer, 'i' creates an empty buffers and
|
||||||
|
jumps into insert mode, 'q' quits.
|
||||||
|
|
||||||
2) It eases handling of loading and saving sessions by only working with a
|
2) It eases handling of loading and saving sessions by only working with a
|
||||||
certain directory. Two commands are used for convenience:
|
certain directory. Two commands are used for convenience:
|
||||||
|
|
|
@ -100,7 +100,7 @@ function! s:insane_in_the_membrane() abort
|
||||||
setlocal nomodifiable nomodified
|
setlocal nomodifiable nomodified
|
||||||
|
|
||||||
nnoremap <buffer><silent> e :enew<cr>
|
nnoremap <buffer><silent> e :enew<cr>
|
||||||
nnoremap <buffer><silent> i :enew<cr>
|
nnoremap <buffer><silent> i :enew <bar> startinsert<cr>
|
||||||
nnoremap <buffer> <cr> :normal <c-r><c-w><cr>
|
nnoremap <buffer> <cr> :normal <c-r><c-w><cr>
|
||||||
nnoremap <buffer> <2-LeftMouse> :execute 'normal '. matchstr(getline('.'), '\w\+')<cr>
|
nnoremap <buffer> <2-LeftMouse> :execute 'normal '. matchstr(getline('.'), '\w\+')<cr>
|
||||||
nnoremap <buffer> q
|
nnoremap <buffer> q
|
||||||
|
|
Loading…
Reference in a new issue