-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
315f51d
commit 662b3dd
Showing
2 changed files
with
51 additions
and
1 deletion.
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,50 @@ | ||
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 ~/dev/manual-approval | ||
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 +0 action.yaml | ||
argglobal | ||
%argdel | ||
edit action.yaml | ||
argglobal | ||
balt action.yaml | ||
setlocal fdm=expr | ||
setlocal fde=nvim_treesitter#foldexpr() | ||
setlocal fmr={{{,}}} | ||
setlocal fdi=# | ||
setlocal fdl=99 | ||
setlocal fml=1 | ||
setlocal fdn=20 | ||
setlocal fen | ||
let s:l = 36 - ((35 * winheight(0) + 20) / 41) | ||
if s:l < 1 | let s:l = 1 | endif | ||
keepjumps exe s:l | ||
normal! zt | ||
keepjumps 36 | ||
normal! 058| | ||
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 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 | ||
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