-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
No need to change path format for windows. Revert it.
- Loading branch information
Showing
2 changed files
with
66 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
let SessionLoad = 1 | ||
let s:so_save = &g:so | let s:siso_save = &g:siso | setg so=0 siso=0 | setl so=-1 siso=-1 | ||
let v:this_session=expand("<sfile>:p") | ||
silent only | ||
silent tabonly | ||
cd ~/AppData/Local/nvim-data/lazy/img-paste.vim | ||
if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == '' | ||
let s:wipebuf = bufnr('%') | ||
endif | ||
let s:shortmess_save = &shortmess | ||
if &shortmess =~ 'A' | ||
set shortmess=aoOA | ||
else | ||
set shortmess=aoO | ||
endif | ||
badd +240 plugin/mdip.vim | ||
argglobal | ||
%argdel | ||
$argadd ~/AppData/Local/nvim-data/lazy/img-paste.vim | ||
edit plugin/mdip.vim | ||
wincmd t | ||
let s:save_winminheight = &winminheight | ||
let s:save_winminwidth = &winminwidth | ||
set winminheight=0 | ||
set winheight=1 | ||
set winminwidth=0 | ||
set winwidth=1 | ||
argglobal | ||
setlocal fdm=manual | ||
setlocal fde=0 | ||
setlocal fmr={{{,}}} | ||
setlocal fdi=# | ||
setlocal fdl=0 | ||
setlocal fml=1 | ||
setlocal fdn=20 | ||
setlocal fen | ||
silent! normal! zE | ||
let &fdl = &fdl | ||
let s:l = 240 - ((19 * winheight(0) + 13) / 27) | ||
if s:l < 1 | let s:l = 1 | endif | ||
keepjumps exe s:l | ||
normal! zt | ||
keepjumps 240 | ||
normal! 016| | ||
tabnext 1 | ||
if exists('s:wipebuf') && len(win_findbuf(s:wipebuf)) == 0 && getbufvar(s:wipebuf, '&buftype') isnot# 'terminal' | ||
silent exe 'bwipe ' . s:wipebuf | ||
endif | ||
unlet! s:wipebuf | ||
set winheight=1 winwidth=20 | ||
let &shortmess = s:shortmess_save | ||
let &winminheight = s:save_winminheight | ||
let &winminwidth = s:save_winminwidth | ||
let s:sx = expand("<sfile>:p:r")."x.vim" | ||
if filereadable(s:sx) | ||
exe "source " . fnameescape(s:sx) | ||
endif | ||
let &g:so = s:so_save | let &g:siso = s:siso_save | ||
set hlsearch | ||
nohlsearch | ||
let g:this_session = v:this_session | ||
let g:this_obsession = v:this_session | ||
doautoall SessionLoadPost | ||
unlet SessionLoad | ||
" vim: set ft=vim : |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters