Newer
Older
7gui / session
let SessionLoad = 1
if &cp | set nocp | endif
let s:so_save = &so | let s:siso_save = &siso | set so=0 siso=0
let v:this_session=expand("<sfile>:p")
silent only
silent tabonly
exe "cd " . escape(expand("<sfile>:p:h"), ' ')
if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == ''
  let s:wipebuf = bufnr('%')
endif
set shortmess=aoO
argglobal
%argdel
edit src/imgui_impl.ts
set splitbelow splitright
set nosplitbelow
set nosplitright
wincmd t
set winminheight=0
set winheight=1
set winminwidth=0
set winwidth=1
argglobal
let s:l = 1 - ((0 * winheight(0) + 21) / 42)
if s:l < 1 | let s:l = 1 | endif
exe s:l
normal! zt
1
normal! 0
tabnext 1
badd +0 src/imgui_impl.ts
badd +12 rollup.config.js
badd +7 imgui-js/rollup.config.js
badd +4 imgui-js/tsconfig.json
badd +12 tsconfig.json
badd +1 index.js
badd +3904 imgui-js/imgui.ts
badd +80 src/main.ts
badd +52 imgui-js/example/main.ts
badd +34 package.json
badd +1 imgui-js/dist/imgui.d.ts
badd +1 imgui-js/bind-imgui.js
badd +1 imgui-js/example/imgui_impl.js
badd +2 imgui-js/example/imgui_impl.ts
badd +295 imgui-js/imgui_demo.ts
badd +4 index.html
badd +4 indexdev.html
badd +6 imgui-js/example/index.html
badd +6 imgui-js/example/system.config.js
badd +40 imgui-js/package.json
badd +1 node_modules/systemjs/dist/system.js
badd +1 src/main.js
badd +1 imgui-js/example/main.js
if exists('s:wipebuf') && len(win_findbuf(s:wipebuf)) == 0
  silent exe 'bwipe ' . s:wipebuf
endif
unlet! s:wipebuf
set winheight=1 winwidth=20 shortmess=filnxtToOc
set winminheight=1 winminwidth=1
let s:sx = expand("<sfile>:p:r")."x.vim"
if file_readable(s:sx)
  exe "source " . fnameescape(s:sx)
endif
let &so = s:so_save | let &siso = s:siso_save
doautoall SessionLoadPost
unlet SessionLoad
" vim: set ft=vim :